summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorbfox <bfox>2000-12-21 22:27:32 +0000
committerbfox <bfox>2000-12-21 22:27:32 +0000
commitb74f64831f6fe064cf631ee0982dd414f437f3d7 (patch)
treea8b6cd6105287ab869e38caa36c5730a97813df9 /gui.py
parent23020340638f8de4012d227e658c764422ad8885 (diff)
downloadanaconda-b74f64831f6fe064cf631ee0982dd414f437f3d7.tar.gz
anaconda-b74f64831f6fe064cf631ee0982dd414f437f3d7.tar.xz
anaconda-b74f64831f6fe064cf631ee0982dd414f437f3d7.zip
Made the release notes window modal so that the user can't open more than one window at a time. Also, it prohibits them from clicking on anything in the main installer window until the realease notes screen is closed.
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/gui.py b/gui.py
index 86a60ea88..055ae0c69 100755
--- a/gui.py
+++ b/gui.py
@@ -485,6 +485,7 @@ class InstallControlWindow:
def releaseClicked (self, widget):
self.textWin = GtkWindow ()
+ self.textWin.set_modal (TRUE)
closeButton = GtkButton ("Close")
closeButton.connect ("clicked", self.textWin.hide)