summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2002-02-04 22:30:49 +0000
committerMatt Wilson <msw@redhat.com>2002-02-04 22:30:49 +0000
commitcb7cdd879e777b045bd1c9875db1912b067cf2ad (patch)
tree9b8e2747e47c622403ad74493d550eea774feb4f
parentceb5b9d023a53a7107deee2fb3ab28b17b51f13d (diff)
downloadanaconda-cb7cdd879e777b045bd1c9875db1912b067cf2ad.tar.gz
anaconda-cb7cdd879e777b045bd1c9875db1912b067cf2ad.tar.xz
anaconda-cb7cdd879e777b045bd1c9875db1912b067cf2ad.zip
fix wrapping and horiz scrolling
-rwxr-xr-xgui.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gui.py b/gui.py
index a1f480a1d..5da345cce 100755
--- a/gui.py
+++ b/gui.py
@@ -490,9 +490,10 @@ class InstallControlWindow:
text.set_buffer(self.releaseNotesBuffer)
text.set_property("editable", gtk.FALSE)
text.set_property("cursor_visible", gtk.FALSE)
+ text.set_wrap_mode(gtk.WRAP_WORD)
sw = gtk.ScrolledWindow()
- sw.set_policy(gtk.POLICY_NEVER, gtk.POLICY_ALWAYS)
+ sw.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_ALWAYS)
sw.set_shadow_type(gtk.SHADOW_IN)
sw.add(text)
vbox1.pack_start(sw)