Mediatomb GUI not displaying in Midori

As in the title, when opening the Mediatomb web-based GUI in Midori, I can see just the background, top banner image and frames, but no text at all. It's the first time a website is not displaying properly, although I've only been using Midori for a couple of weeks.
It opens properly with Firefox.
I'm guessing it's something to do with JS/AJAX, but not sure how to check that. No errors get printed from Midori.
Any help/advice/solutions would be much appreciated.
EDIT: gRammer
Last edited by lukaszan (2011-05-29 16:17:07)

What is EPG?Embedded PL/SQL Gateway:
http://www.oracle.com/technology/products/database/application_express/html/apex_arch.html
>
The pages use a template that references a CSS with this:
href="#IMAGE_PREFIX#themes/theme_2/theme_3_1_GNT.css"
So what exactly is the URL that I should paste into the browser?
>
Look in the source of the page as displayed: I don't know what your #IMAGE_PREFIX# is, nor (as that will produce a relative URL) what the rest of the URL will be. Something like:
http://your.server:port/i/themes/theme_2/theme_3_1_GNT.css

Similar Messages

  • Server Admin GUI not displaying complete information

    Recently, the Server Admin GUI stopped displaying complete information for one of our servers. It works fine for the other.
    All servers are set up very much the same, other than one is an Xserve and one is a G5 tower. The one giving the grief is the G5 tower.
    Server Admin is version 10.4.7 and was working fine until a few days ago.
    When I click on the computer name (or IP) in the "Computers and Services" list, then look at any of the tabs > "Overview" "Logs" "System" "Graphs" or "Update" no information is retrieved. With the exception of Hard Drive capacity.
    All other services (Web, VPN, Mail) report all info without problems.
    Weird, hey? Any thoughts appreciated.
    Message was edited by: mebs2

    Well it pretty easy. I've taken out the code that is unused so you can see what is going on.
    import javax.swing.* ;
    public class Shareddilog extends JDialog
    public static void main(String[] args)
    Shareddilog s=new Shareddilog();
    s.show();
    }This is the only code that is executed in your program. It created a JDialog and then shows it. What you want to do, I imagine, is to put all the GUI stuff in your constructor and make sure you call pack() on it before you are done.

  • GUI not displaying correctly

    My DBA is moving all apps to a new server, so I just moved my APEX app from one server to another using Import/Export and now the GUI looks all wrong. The background is no longer blue, the regions don't look the same as before and the tabs don't show up.
    On the new server, all my pages are still based on the same template as they were in the original location, and that template references a modified CSS. I'm not quite sure exactly what went wrong and how to fix it. Can somebody give me some guidelines on how to fix this?
    Edited by: Prohan on May 13, 2010 12:56 PM

    What is EPG?Embedded PL/SQL Gateway:
    http://www.oracle.com/technology/products/database/application_express/html/apex_arch.html
    >
    The pages use a template that references a CSS with this:
    href="#IMAGE_PREFIX#themes/theme_2/theme_3_1_GNT.css"
    So what exactly is the URL that I should paste into the browser?
    >
    Look in the source of the page as displayed: I don't know what your #IMAGE_PREFIX# is, nor (as that will produce a relative URL) what the rest of the URL will be. Something like:
    http://your.server:port/i/themes/theme_2/theme_3_1_GNT.css

  • GUI not displaying

    I cannot get the GUI for this class to display at all. The could will compile and run but only a small GUI appears with none of my buttons or controls on it. The complete GUI code is below. Any ideas?
    Thanks
    Mick
    package shareddilog;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.border.*;
    /*This class is used for sharing files and folders and is a GUI class. It is mainly
    used for sharing files and directories for users to use. Through this class the
    listener can add files and directories for sharing */
    public class Shareddilog extends JDialog implements ActionListener
    public void actionPerformed(ActionEvent e)
    public void shared_files()
    //Create an object of the JDialog class
    sharedilog = new JDialog();
    //Set the layout as null and draw the GUI components as needed
    sharedilog.getContentPane().setLayout(null);
    sharedilog.setTitle("Share Dialog");
    //adding the window listener
    addWindowListener(new WindowAdapter()
    public void windowClosing(WindowEvent e)
    dispose();
    //Initialising the GUI Component
    share_file=new JButton("Share File");
    //Positioning the the GUI Component
    share_file.setBounds(10,7,100,20);
    //Adding an ActionListener
    share_file.addActionListener(this);
    //Adding the button
    sharedilog.getContentPane().add(share_file);
    share_folder=new JButton("Share Folder");
    share_folder.setBounds(110,7,150,20);
    share_file.addActionListener(this);
    sharedilog.getContentPane().add(share_folder);
    l_type=new JLabel();
    l_type.setText("Type a filename here or click browse to select");
    l_type.setBounds(15,35,380,20);
    sharedilog.getContentPane().add(l_type);
    t_type=new JTextField(150);
    t_type.setBounds(15,60,380,20);
    sharedilog.getContentPane().add(t_type);
    browse=new JButton("Browse");
    browse.setBounds(315,85,80,20);
    browse.add(this);
    sharedilog.getContentPane().add(browse);
    c_entry=new JCheckBox("Add this entry only");
    c_entry.setBounds(275,110,150,20);
    sharedilog.getContentPane().add(c_entry);
    /*When this button is pressed the information regarding the file/folder share
    will be added to the share.ini file*/
    shared_it=new JButton("Share it");
    shared_it.setBounds(250,165,80,20);
    shared_it.addActionListener(this);
    sharedilog.getContentPane().add(shared_it);
    /*This button is for closing the Dialog */
    close=new JButton("Close");
    close.setBounds(340,165,80,20);
    close.addActionListener(this);
    sharedilog.getContentPane().add(close);
    //This RadioButton gives read only permission to the file
    read_only=new JRadioButton("Read Only",true);
    read_only.setBounds(10,140,80,20);
    sharedilog.getContentPane().add(read_only);
    //This RadioButton gives gives read/write permissions to the file
    read_write=new JRadioButton("Read/Write",false);
    read_write.setBounds(10,165,80,20);
    sharedilog.getContentPane().add(read_write);
    group=new ButtonGroup();
    //Adding RadioButtons to the group so only one can be selected
    group.add(read_only);
    group.add(read_write);
    JDialog sharedilog;
    JButton share_file;
    JButton share_folder;
    JLabel l_type;
    JTextField t_type;
    JButton browse;
    JCheckBox c_entry;
    JButton shared_it;
    JButton close;
    JRadioButton read_only;
    JRadioButton read_write;
    ButtonGroup group;
    Vector v_file_list;
    DataInputStream data_in;
    BufferedReader data_buffer_in;
    static boolean b_cho_f=false;
    static boolean b_cho_d=false;
    JFileChooser fileselection;
    String r_reights;
    long lengthoffile;
    static File file_list;
    static boolean value_all_ready_present = false;
    StringTokenizer st;
    String s_line;
    static boolean first_time_entry = false;
    DataOutputStream data_out;
    public static void main(String[] args)
    Shareddilog s=new Shareddilog();
    s.show();

    Well it pretty easy. I've taken out the code that is unused so you can see what is going on.
    import javax.swing.* ;
    public class Shareddilog extends JDialog
    public static void main(String[] args)
    Shareddilog s=new Shareddilog();
    s.show();
    }This is the only code that is executed in your program. It created a JDialog and then shows it. What you want to do, I imagine, is to put all the GUI stuff in your constructor and make sure you call pack() on it before you are done.

  • GUI not displaying upon init

    slightly newbie question I think:
    I've written a small application (swing) which compiles fine. Upon running, the window that appears is blank. clicking anywhere on the title bar or in the window itself does nothing. However, resizing the window causes the GUI to appear and things function normaly after that. What am I missing here? I don't think i've ever had this happen before...
    thanks

    here it is:
    import javax.swing.*;
    import java.awt.*;
    * @author  dsmolin
    public class Wizard2 extends javax.swing.JFrame {
        public Wizard2() {
            init();
            repaint();
        private void init() {
            this.setLayout(null);
              this.setVisible(true);
              this.setSize(400, 400);
            this.setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
              //this.add(jPanel1);
              this.add(CARDS);
              this.add(jPanel2);
              this.setTitle("title");
              getRootPane().setDefaultButton(NEXTBUTTON);
              CARDS.add(jPanel1, P0);
              CARDS.add(Q1);
              CARDS.add(Q2);
              CARDS.add(Q3);
              CARDS.add(Q4);
              CARDS.add(PP);
              CARDS.setLayout(null);
              CARDS.setVisible(true);
              CARDS.setBounds(0, 0, 390, 280);
            jPanel1.setLayout(null);
              jPanel1.add(jScrollPane1);
            jPanel1.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory.createTitledBorder("Select Module")));
            jPanel1.add(jTextArea1);
            jPanel1.setBounds(0, 0, 390, 280);
              Q1.setBounds(0, 0, 390, 280);
              Q2.setBounds(0, 0, 390, 280);
              Q3.setBounds(0, 0, 390, 280);
              Q4.setBounds(0, 0, 390, 280);
              PP.setBounds(0, 0, 390, 280);
              Q1.setVisible(false);
              Q2.setVisible(false);
              Q3.setVisible(false);
              Q4.setVisible(false);
              PP.setVisible(false);
              jPanel2.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory.createTitledBorder("text")));
              jPanel2.setLayout(null);
              jPanel2.add(EXITBUTTON);
              jPanel2.add(NEXTBUTTON);
              jPanel2.add(BACKBUTTON);
              jPanel2.setBounds(0, 280, 390, 50);
            //jPanel2.setBorder(javax.swing.BorderFactory.createEtchedBorder());
            jList1.setModel(new javax.swing.AbstractListModel()
                String[] strings = { "Vitamin A Calculator", "Drink Formulator", "Pearson Square", "Milk & Mix formulator" };
                public int getSize() { return strings.length; }
                public Object getElementAt(int i) { return strings; }
    jList1.addListSelectionListener(new javax.swing.event.ListSelectionListener()
    public void valueChanged(javax.swing.event.ListSelectionEvent evt) {
    jList1ValueChanged(evt);
    jScrollPane1.setViewportView(jList1);
    jScrollPane1.setBounds(10, 20, 110, 250);
    jTextArea1.setBackground(new java.awt.Color(212, 208, 200));
    jTextArea1.setText("Please select a Module and press Next.");
    jTextArea1.setBorder(null);
    jTextArea1.setBounds(130, 84, 250, 110);
              jTextArea1.setLineWrap(true);
              jTextArea1.setFont(new JTextField().getFont());
              EXITBUTTON.setBounds(330, 12, 50, 30);
    EXITBUTTON.setText("Cancel");
    EXITBUTTON.setBorder(javax.swing.BorderFactory.createEtchedBorder());
    EXITBUTTON.addActionListener(Action);
              NEXTBUTTON.setBounds(240, 12, 50, 30);
    NEXTBUTTON.setText("Next >");
    NEXTBUTTON.setBorder(javax.swing.BorderFactory.createEtchedBorder());
    NEXTBUTTON.setEnabled(false);
    NEXTBUTTON.addActionListener(Action);
              BACKBUTTON.setBounds(180, 12, 50, 30);
    BACKBUTTON.setText("< Back");
    BACKBUTTON.setBorder(javax.swing.BorderFactory.createEtchedBorder());
    BACKBUTTON.setEnabled(false);
    BACKBUTTON.addActionListener(Action);
              QPanel[] PANES = {Q1, Q2, Q3, Q4};
              for(int i=0; i<4; i++)
                   //PANES[i].jTextArea1.addActionListener(Action);
         int CurrentCard = 0;
         private QPanel Q1 = new QPanel();
         private QPanel Q2 = new QPanel("Step 2: Weight","Weight per Gallon: ","info: please enter the Weight per Gallon of the new Mix. For example, Enter 9.32");
         private QPanel Q3 = new QPanel("Step 3: Butterfat Test","Butterfat Test of Standard: ","info: please enter the Butterfat Test of Standard being compared. For example, Enter 10.00");
         private QPanel Q4 = new QPanel("Step 4: Vitamin A","Vitamin A Concentration: ","info: please enter the Concentration of Vitamin A being used in I.U's per ml. Please do not use commas. For example, Enter 12000");
         private VitaminAProofPanel PP = new VitaminAProofPanel();
         private JButton EXITBUTTON = new JButton();
    private JButton NEXTBUTTON = new JButton();
    private JButton BACKBUTTON = new JButton();
    private JList jList1 = new JList();
    private JPanel jPanel1 = new JPanel();
    private JPanel jPanel2 = new JPanel();
         private QPanel[] PANES;// = new JPanel[5];
    private JScrollPane jScrollPane1 = new JScrollPane();
    private JTextArea jTextArea1 = new JTextArea();
         JPanel CARDS = new JPanel();
         String P1 = new String("1");
         String P2 = new String("2");
         String P3 = new String("3");
         String P4 = new String("4");
         String P0 = new String("0");
         public SymAction Action = new SymAction();
         double D1;
         double D2;
         double D3;
         double D4;
         public class SymAction implements java.awt.event.ActionListener
              public void actionPerformed(java.awt.event.ActionEvent event)
                   Object object = event.getSource();
                   if (object == EXITBUTTON)
                             System.exit(1);
                   if (object == BACKBUTTON)
                   if (object == NEXTBUTTON)
    private void jList1ValueChanged(javax.swing.event.ListSelectionEvent evt) {
              // if something is selected, make next enabled, else, make next disabled.
              NEXTBUTTON.setEnabled(true);
    public static void main(String args[]) {
              try
         //UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
                        //UIManager.setLookAndFeel("com.sun.java.swing.plaf.gtk.GTKLookAndFeel");
                        //UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
                        UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
                        //UIManager.setLookAndFeel("com.sun.java.swing.plaf.motif.MotifLookAndFeel");
         } catch (Exception e) { }
    new Wizard2();

  • GUI status items are not displayed

    Hi all,
    Some parts of gui status are not displayed but some of them are displayed.
    What is the problem?
    Thanks.
    deniz.

    Hi snehi chouhan,
    I have created a program and two gui statuses for this.
    One of them is set at first display of report but not all items.
    Thanks.

  • Radio Buttons / Check box of Gui Transaction not displaying in WEB UI

    HI,
    We are using CRM 7.0 / ECC 6.0, i am launching some ECC transaction in WEB UI using transaction launcher, Radio button and Checkbox are displaying properly in Dev CRM system but it is not displaying in Quality system.
    I compared both systems, everything is the same. I also checked the ITS URL, we are using transaction IC_LTXE.
    /sap/bc/gui/sap/its/webgui/!?transaction=IC_LTXE&okcode=ICEXECUTE&sap-client=100
    Please Advise ?.
    Thanks & Regards,
    Rajanidhi Rajasekeran.

    Hi,
    We are working on an upgrade project and have used transaction launcher to give SAP GUI transactions in Web UI.
    We are facing a similar issue.
    We have a report program with several checkboxes. User will select few checkbox and perform further processing.
    In development system it is working fine but in quality system if we scroll down or up after clicking on checkbox the page is getting refreshed and check is cleared.
    Did you come up with a reasonable solution to this issue?
    Do you know any way around this issue?
    Thanks in advance
    Regards,
    Sayan

  • Imqsvcadmin.exe does not display GUI under Windows XP

    I installed 4.3 on Windows XP. I want to start IMQ as service. When I try to run imqsvcadmin.exe it shows up in Task Manager but does not display a GUI

    Hi,
    We can file a bug but we will need more information.
    Please send us the exact imqsvcadmin command you used,
    the invalid file it created and its location, and the exact steps
    you used to clean it up and get it to work in the end. Thanks.

  • Error raised using 'CRM_MESSAGE_COLLECT' not displayed in Web UI

    Hello,
    I have implemented the badi CRM_ORDERADM_H_BADI and based on certain conditions i raise an exception and display the error message using function module 'CRM_MESSAGE_COLLECT'. The application log is populated with the error message and I am able to see the error message in SAP GUI . However when the same transaction is triggered via WebUI , even thought the exception is raised , the error message is not displayed.
    I know i can use the method ADD_MESSAGE of the class CL_CRM_GENIL_GLOBAL_MESS_CONT if i want the error message to be displayed in Web UI .
    However I want the message to be displayed either if the transaction is run from the SAP GUI or web UI .
    Have anyone come across the similar situation , is there something I am missing.
    Thanks & Regards ,
    Sriram.

    Hello Arun ,
         I got the solution . The error message was raised properly . The problem is  message filter at every view or viewset of a component is actually switched off by default.With standard components the filter gets activated at runtime if the component controller contains a BOL entity.
    In our case , since it was a custom component with no BOL entity the filter was switched off and hence the messages from the application level were not read.
    Therefore we redefined the filter method IF_BSP_WD_STATE_CONTEXT~GET_MESSAGE_FILTER at the view/viewset level and turned on the filter by default.hence even if the component does not return an entity the message filter gets activated.
    Thanks for your inputs.
    Thanks & Regards,
    Sriram

  • Reg: Drop-Down list Box not  displaying values

    Hi Experts,
                     i am publishing a module pool program in the internet using SICF Transaction . In the internet my drop down list box is not displaying the default value  but in my sap it works fine .
    What may be the problem?
    Regards,
    Vikram

    Hello Thorsten Domsalla ,
                      My Problem is in my sap module pool program there is a drop down list box which disaplays  default values its working fine in sap gui but when i access through internet (SICF) Transaction the Drop down list box not listing out default values .
    i am using Integrated ITS Version 7.0 and Support package 08.
    Regards,
    Vikram

  • Custom fields not display in SRM5.5 Basic Data Frame

    Hello Everybody,
          I am working on SRM5.5 Server which i have to add two custom fields in Basic Data Frame..
         No field is display in basic data frame After I added those fields in INCL_EEW_PD_ITEM_CSF_SC and INCL_EEW_PD_ITEM_CSF.
        I added these fields by help of 672960 OSS notes..
       Add also when i execute the program BBP_DYNPROS_GENERATE where I entered the program name as SAPLBBP_PDH_CUF and execute but non of them is working fine..
      Is there anything else do i need to display custom fields in basic data frame??
    I have one more question..
      When you logon through SAPGUI and goto BBPSC01 t.code where you see lots of fields in basic data frame such as unloading point and all.. But those all fields does not display when you logon through WebURL..
      I checked is there any BAdi such CUF or Screenvarient or some Badi has been actived but non of the Badi has been implemented..
      To display all the fields which are display in GUI Mode also should display in URL..
      To bring this functionality , What do i need to do?
      I appreciate if you answer these questions..
    Thanks,
    John.

    Hi Disha,
    We are trying to add custom fields to the Shopping Cart Header. We are using SRM 5.0. We added the fields to the structures "INCL_EEW_PD_HEADER_CSF_SC" & "INCL_EEW_PD_HEADER_CSF".  We are able to see the custom fields. But the issue is , we are able to see the custom fields in the Shopping Cart one step shop scenario. Whereas when we run the wizard which is a 3 step scenario, we are not able to see the custom fields.
    Technically speaking, the custom fields are visible for the ITS BBPSC01 & BBPSC03 , where as these custom fields are not visible for the ITS BBPSC02.
    Please let me know, if we need to append the fields to some other structure to be able to see them in the Shopping cart wizard also.
    I will be gald to provide any kind of info.
    Thanks in advance...

  • Time Machine not displaying backups of mounted /Users

    Bottom Line: Time Machine 'Warp' GUI does not display available backups when using Finder to browser user directories stored on HDD, mounted on /Users in /etc/fstab, even though the backups exist and I can navigate to them from the Finder to the backup disk
    Machine Config:
    1. OS X Lion 10.8.5 on MBP 2.53 GHz Intel Core 2 Duo running on a SSD as the OS X boot drive, and the OEM HDD in a drive tray in what used to be the superdrive bay.
    2. The HDD is a single partition dedicated to Users and mounted to /Users. When unmounted, the SSD has a /Users dir with a single admin-enabled user still present to ensure I can still boot and log in as that user in the event the HDD does not mount.
    3. The /Users dir mounts successfully using /etc/fstab
    4. The HDD still displays in the Finder window and the desktop, which is not a problem for me
    I've posted a work-around at http://www.andrew.cmu.edu/user/mlanham/currEvents.shtml that explains I can, inside the TM restore GUI (what I've heard called 'warp' and 'space') select the machine label under the Devices list in Finder (on the left side). I can then expand folders without double clicking them, and get TM to restore the file(s)...TM sees the backups as present and available and functions as I would expect. 
    However, when I select a labeled location (e.g. Google Drive, Downloads) under the Favorites label, still inside the TM restore GUI, all the backups are black and do not otherwise indicate they are present for restore actions.
    I thought I read a blurd somewhere warning me of this situation, but I cannot find the blurb anymore--surely I'm not the only one to have experienced this. Has anyone else experienced it? Overcome it?
    More importantly, I am interested in knowning if this is 'as designed' behavior or a bug in TM's GUI presentation. Why should TM care if a dir is a mounted partition or not...if it was present during backup, and present during a restore request, it should render the available backups as available to select. Not make me do a work around.

    Earlier, I posted that the OP in https://discussions.apple.com/message/8182305#8182305 resolved this situation by making a softlink from SSD /Users to HDD's /Users and removing the entry from /etc/fstab. Initially, I thought this was a bad idea, as if the HDD fails to spin up and mount to /Volumes, that the system would fail to boot as it would not find a /Users directory available.
    Then I read a different post that implied that if that happens, simply boot to single user mode and fix the trouble with the HDD.
    Is this soft-link + boot to single user mode a better choice than /etc/fstab to mount the HDD to /Users (where the SDD has a non-empty /Users with a single admin-enabled user in it)?

  • Quotation Items are not displayed on SRM Web

    Hi experts!
    I did a program to create a quotation based on a Bid invitation.
    My program creates the document correctly, but, when i try to show the quotation on the browser, the quotation items are not displayed.
    If I open this same quotation on the SRM Gui (TCODE = BBP_PD), the quotation items are there.
    Anybody in here already had this problem?
    Thanks in advance.
    Danilo Cardoso

    Hi.
    I got to fix my program!
    My code is like that below:
          ls_quot_item_e-src_guid        = bid_items-guid.
          ls_quot_item_e-src_object_type = 'BUS2200001'.
    The business object BUS2200001 is the BO of Items of Bid Invitation, now, my reference is complete.
    It works fine now.
    Thanks for you help.
    Regards.
    Danilo

  • How can I make the jsp pages not displayed by using the navigation class?

    I'm right now implementing a function on my program GUI . It's like whenever I click "STOP THE SERVER" button on the main page, I need those jsp pages relates to the server running to be not displayed, even by directly type in the URL(that's just stay in the main page), How can I do that? I heard that a navigation class might do it, but I'm not sure how. It might be great if some experts could help me!! Thanx a million !!
    Shannon

    See:
    * [[Removing the Search Helper Extension and Bing Bar]]
    You can use one of these extensions to adjust the default font size and page zoom on web pages:
    * Default FullZoom Level - https://addons.mozilla.org/firefox/addon/6965
    * NoSquint - https://addons.mozilla.org/firefox/addon/2592

  • SBWP: The content of message is not display

    Hi,
    The user use SBWP inbox. There the message is not display the content of the message.
    There I uninstalled and install again the SAP GUI and Windows, but there has been the same. Only the head of message is displayed.
    There can only print the content of message.
    What I have to do to display the content?
    Regards,
    Betta

    nyet wrote:
    Sir,
    When forwarding SMS as email, the content of the SMS is stored as an attachment called <primary_text.txt> file, it's double pain since the receiving person can not read the attachment via Z10 since the device can not open *.txt> file extension.
    If it's possible, please restore this functionality back to the way of OS 6/7, which put the content of the SMS in the body of email, since I do rely on this feature heavily.
    Leo 
    How exactly are you trying to forward an SMS as an email?
    You can forward the SMS to an email address of your choice and that`s when your SMS will be converted to MMS, and sent to the email address of your choice . The recepient should get your message as "[email protected] carrier.com   
    Another way of doing it is to select "Share" instead of forward. Then a list of options will open that includes your email address. Select your email address and the selected text message will be added as "body.txt" and after this, you just have to enter the recepient email address and subject line (optional).
    The recepient will receive the email with a "body.txt" attachment that can be downloaded and open in or with the "Notepad" on PC

Maybe you are looking for