summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-12-19 22:30:12 +0000
committerJeremy Katz <katzj@redhat.com>2005-12-19 22:30:12 +0000
commitd6cace37dbaa5f453011976dac7af8d87a6b2d67 (patch)
tree7de3fa053abb98ef61fd0059108fc6e78b88e7b0 /gui.py
parent14b0a69b5fa359c272e9a8b93ec6d63914ab857c (diff)
downloadanaconda-d6cace37dbaa5f453011976dac7af8d87a6b2d67.tar.gz
anaconda-d6cace37dbaa5f453011976dac7af8d87a6b2d67.tar.xz
anaconda-d6cace37dbaa5f453011976dac7af8d87a6b2d67.zip
2005-12-19 Jeremy Katz <katzj@redhat.com>
* splashscreen.py: Remove unused file. * gui.py (InstallInterface.__init__): Set cursor here instead of splashscreen. (InstallControlWindow.setup_window): Don't pop splashscreen. * anaconda: Don't use the splashscreen. --nofallback isn't used and now that we trap and log the exception, it shouldn't be needed for debugging.
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/gui.py b/gui.py
index 91a70c416..910659e20 100755
--- a/gui.py
+++ b/gui.py
@@ -31,7 +31,6 @@ import kudzu
import gettext
import warnings
from language import expandLangs
-from splashscreen import splashScreenPop
from flags import flags
from constants import *
import floppy
@@ -736,6 +735,9 @@ class InstallInterface:
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)
def __del__ (self):
pass
@@ -1395,7 +1397,6 @@ class InstallControlWindow:
self.setScreen()
self.window.show()
- splashScreenPop()
def busyCursorPush(self):
rootPushBusyCursor()