summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-07-11 04:08:32 +0000
committerJeremy Katz <katzj@redhat.com>2002-07-11 04:08:32 +0000
commit95abc77860238c0b6352f0918771b0561aa5fd8a (patch)
treece3b026072b8becf59f9f5f8aa05fb1a656dcde5 /gui.py
parentcb02fd143ffd4c891c251884da2c6f6d44b9f549 (diff)
downloadanaconda-95abc77860238c0b6352f0918771b0561aa5fd8a.tar.gz
anaconda-95abc77860238c0b6352f0918771b0561aa5fd8a.tar.xz
anaconda-95abc77860238c0b6352f0918771b0561aa5fd8a.zip
make the cursor visible (#68265)
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui.py b/gui.py
index 89d5584b7..8166cca4a 100755
--- a/gui.py
+++ b/gui.py
@@ -608,7 +608,7 @@ class InstallControlWindow:
text = gtk.TextView()
text.set_buffer(self.releaseNotesBuffer)
text.set_property("editable", gtk.FALSE)
- text.set_property("cursor_visible", gtk.FALSE)
+ text.set_property("cursor_visible", gtk.TRUE)
text.set_wrap_mode(gtk.WRAP_WORD)
sw = gtk.ScrolledWindow()
@@ -946,7 +946,7 @@ class InstallControlWindow:
self.help = gtk.TextView()
self.help.set_property("editable", gtk.FALSE)
- self.help.set_property("cursor_visible", gtk.FALSE)
+ self.help.set_property("cursor_visible", gtk.TRUE)
self.help.set_left_margin(10)
self.help.set_wrap_mode(gtk.WRAP_WORD)