Set default resolution of anaconda.glade to 800x600
The default resolution of mainWindow is used for sessions that run
anaconda over ssh X forwarding. For normal graphical installs and VNC
sessions, we take the default resolution offered by the server.
- # figure out if we want to run interface at 800x600 or 640x480
- if gtk.gdk.screen_width() >= 800:
- self.runres = "800x600"
- else:
- self.runres = "640x480"
root = gtk.gdk.get_default_root_window()
cursor = gtk.gdk.Cursor(gtk.gdk.LEFT_PTR)
root.set_cursor(cursor)
@@ -1329,7 +1324,7 @@ class InstallInterface(InstallInterfaceBase):
anaconda.id.keyboard.activate()