summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-10-02 03:29:58 +0000
committerJeremy Katz <katzj@redhat.com>2003-10-02 03:29:58 +0000
commit8dd90ec4e6fdb1f088b539d6c21ff71dbc80afe5 (patch)
tree7e25f77e83d95ebbd674a773408d98a4bb31ac27 /iw
parenta28b62918b568c502739576bde22c677457583f7 (diff)
downloadanaconda-8dd90ec4e6fdb1f088b539d6c21ff71dbc80afe5.tar.gz
anaconda-8dd90ec4e6fdb1f088b539d6c21ff71dbc80afe5.tar.xz
anaconda-8dd90ec4e6fdb1f088b539d6c21ff71dbc80afe5.zip
remove shadow, use the normal background, don't put a label on this frame
(since it's just a graphic and it looks odd to me)
Diffstat (limited to 'iw')
-rw-r--r--iw/welcome_gui.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/iw/welcome_gui.py b/iw/welcome_gui.py
index f8337faa5..ddcb5de10 100644
--- a/iw/welcome_gui.py
+++ b/iw/welcome_gui.py
@@ -17,7 +17,7 @@ from rhpl.translate import _, N_
class WelcomeWindow (InstallWindow):
- windowTitle = N_("Welcome")
+ windowTitle = "" #N_("Welcome")
htmlTag = "wel"
def __init__ (self, ics):
@@ -27,14 +27,14 @@ class WelcomeWindow (InstallWindow):
# WelcomeWindow tag="wel"
def getScreen (self, configFileData):
frame = gtk.Frame ()
- frame.set_shadow_type (gtk.SHADOW_IN)
+ frame.set_shadow_type (gtk.SHADOW_NONE)
image = configFileData["WelcomeScreen"]
pix = self.ics.readPixmapDithered(image)
if pix:
box = gtk.EventBox ()
- box.modify_bg(gtk.STATE_NORMAL, box.get_style ().white)
+# box.modify_bg(gtk.STATE_NORMAL, box.get_style ().white)
box.add (pix)
frame.add (box)