Patch: proposed workaround for gtk.gdk.screen_width() bug

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



As discussed on irc
diff --git a/anaconda b/anaconda
index 8f4447e..eaa2d5d 100755
--- a/anaconda
+++ b/anaconda
@@ -69,7 +69,6 @@ def startMiniWM(root='/'):
 # function to handle X startup special issues for anaconda
 def doStartupX11Actions(runres="800x600"):
     global miniwm_pid
-    import gtk
 
     if not flags.test and flags.setupFilesystems:
         setupGraphicalLinks()
@@ -79,8 +78,6 @@ def doStartupX11Actions(runres="800x600"):
 	miniwm_pid = startMiniWM()
 	log.info("Started mini-wm")
 
-        i = gtk.Invisible()
-        i.selection_owner_set("_ANACONDA_MINI_WM_RUNNING")
     except:
 	miniwm_pid = None
 	log.error("Unable to start mini-wm")
@@ -89,8 +86,7 @@ def doStartupX11Actions(runres="800x600"):
     # we open and close an X connection in the xutils calls
     # the X server will exit since this is the first X
     # connection (if miniwm isnt running)
-    current_res = "%sx%s" %(gtk.gdk.screen_width(), gtk.gdk.screen_height())
-    if runres != current_res and miniwm_pid is not None:
+    if miniwm_pid is not None:
         try:
             isys.vtActivate(6)
             iutil.execWithRedirect("xrandr", ["-s", runres], searchPath=1,
@@ -102,8 +98,12 @@ def doStartupX11Actions(runres="800x600"):
 
     if miniwm_pid is not None:
 	import xutils
+	import gtk
 
 	try:
+	    i = gtk.Invisible()
+	    i.selection_owner_set("_ANACONDA_MINI_WM_RUNNING")
+
 	    xutils.setRootResource('Xcursor.size', '24')
 	    xutils.setRootResource('Xcursor.theme', 'Bluecurve')
 	    xutils.setRootResource('Xcursor.theme_core', 'true')
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list

[Index of Archives]     [Kickstart]     [Fedora Users]     [Fedora Legacy List]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]
  Powered by Linux