diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-07 04:05:55 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-07 04:05:55 +0000 |
commit | 75611de17546d0eda59ea9832a3f4b3d49b6a8e1 (patch) | |
tree | 90ada5c1786a474564a9557294e8ede468baf9b0 /gui.py | |
parent | 5be3858f1b59e589120930739fef5fc4d5a8a6d2 (diff) | |
download | anaconda-75611de17546d0eda59ea9832a3f4b3d49b6a8e1.tar.gz anaconda-75611de17546d0eda59ea9832a3f4b3d49b6a8e1.tar.xz anaconda-75611de17546d0eda59ea9832a3f4b3d49b6a8e1.zip |
bevel on popup windows
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -52,14 +52,17 @@ class NetworkConfigWindow: class WaitWindow: def __init__(self, title, text): threads_enter () - self.window = GtkWindow () - self.window.set_border_width (10) + self.window = GtkWindow (WINDOW_POPUP) self.window.set_title (title) self.window.set_position (WIN_POS_CENTER) self.window.set_modal (TRUE) label = GtkLabel (text) label.set_line_wrap (TRUE) - self.window.add (label) + frame = GtkFrame () + frame.set_shadow_type (SHADOW_OUT) + frame.add (label) + frame.set_border_width (10) + self.window.add (frame) self.window.show_all () gdk_flush () while events_pending (): |