diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-07-11 04:08:32 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-07-11 04:08:32 +0000 |
commit | 95abc77860238c0b6352f0918771b0561aa5fd8a (patch) | |
tree | ce3b026072b8becf59f9f5f8aa05fb1a656dcde5 /gui.py | |
parent | cb02fd143ffd4c891c251884da2c6f6d44b9f549 (diff) | |
download | anaconda-95abc77860238c0b6352f0918771b0561aa5fd8a.tar.gz anaconda-95abc77860238c0b6352f0918771b0561aa5fd8a.tar.xz anaconda-95abc77860238c0b6352f0918771b0561aa5fd8a.zip |
make the cursor visible (#68265)
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |