2003-06-23 Tim Waugh <twaugh@redhat.com>

* src/NoteEdit.py: Use automatic scrolling policy, to fix scrolling.


svn: r1768
This commit is contained in:
Tim Waugh 2003-06-23 12:45:15 +00:00
parent a63e16d2bd
commit 9109a85b55
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2003-06-23 Tim Waugh <twaugh@redhat.com>
* src/NoteEdit.py: Use automatic scrolling policy, to fix scrolling.
2003-06-21 Tim Waugh <twaugh@redhat.com>
* src/plugins/Ancestors.py: Better handling of missing photos.
* src/plugins/Ancestors.py (event_info): Better handling of strings.

View File

@ -64,7 +64,7 @@ class NoteEditor:
scroll = gtk.ScrolledWindow()
scroll.add(self.entry)
scroll.set_policy (gtk.POLICY_NEVER, gtk.POLICY_ALWAYS)
scroll.set_policy (gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
scroll.set_shadow_type(gtk.SHADOW_IN)
scroll.show()
vbox.pack_start(scroll, gtk.TRUE, gtk.TRUE, 0)