summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2002-02-06 17:38:39 +0000
committerMatt Wilson <msw@redhat.com>2002-02-06 17:38:39 +0000
commitf30ead9067dc1a9ded72532055f5e6354981cd5a (patch)
tree9d3159f37010a7fc282d2fb7fd2cae8e781b9506 /gui.py
parentda36abc9195673cf511446ae66d1838ad1dd3291 (diff)
downloadanaconda-f30ead9067dc1a9ded72532055f5e6354981cd5a.tar.gz
anaconda-f30ead9067dc1a9ded72532055f5e6354981cd5a.tar.xz
anaconda-f30ead9067dc1a9ded72532055f5e6354981cd5a.zip
more borders
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gui.py b/gui.py
index 8f35c4fd3..8cf251544 100755
--- a/gui.py
+++ b/gui.py
@@ -94,6 +94,7 @@ def partedExceptionWindow(exc):
print exc.message
print exc.options
win = gtk.Dialog(exc.type_string, mainWindow, gtk.DIALOG_MODAL)
+ addFrame(win)
win.set_position(gtk.WIN_POS_CENTER)
label = WrappingLabel(exc.message)
win.vbox.pack_start (label)
@@ -677,10 +678,10 @@ class InstallControlWindow:
def abortInstall (self, *args):
dlg = gtk.Dialog(_("Warning"), mainWindow, gtk.DIALOG_MODAL)
+ addFrame(dlg)
dlg.set_modal(gtk.TRUE)
dlg.set_size_request(350, 200)
dlg.set_position(gtk.WIN_POS_CENTER)
- dlg.set_border_width(5)
dlg.add_button('gtk-yes', 0)
dlg.add_button('gtk-no', 1)