summaryrefslogtreecommitdiffstats
path: root/splashscreen.py
diff options
context:
space:
mode:
authorjrb <jrb>2004-08-23 23:21:16 +0000
committerjrb <jrb>2004-08-23 23:21:16 +0000
commitb674c064457806e944f303e63ca965c5ce7a8a9a (patch)
tree192c79d3b1f67560811475b609188ed1f516a281 /splashscreen.py
parent1e785bd9bacdc21846283e043945088f12b7ae41 (diff)
downloadanaconda-b674c064457806e944f303e63ca965c5ce7a8a9a.tar.gz
anaconda-b674c064457806e944f303e63ca965c5ce7a8a9a.tar.xz
anaconda-b674c064457806e944f303e63ca965c5ce7a8a9a.zip
make rootpath work nicer
Diffstat (limited to 'splashscreen.py')
-rw-r--r--splashscreen.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/splashscreen.py b/splashscreen.py
index d084e8d2a..b5995aeaa 100644
--- a/splashscreen.py
+++ b/splashscreen.py
@@ -89,6 +89,10 @@ def splashScreenShow(configFileData):
if p:
splashwindow = gtk.Window()
+ def no_delete (window, event):
+ return True
+ splashwindow.connect('delete-event', no_delete)
+ splashwindow.set_decorated(False)
splashwindow.set_position(gtk.WIN_POS_CENTER)
box = gtk.EventBox()
box.modify_bg(gtk.STATE_NORMAL, box.get_style().white)