diff options
author | Tim Potter <tpot@samba.org> | 2002-06-04 01:41:44 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-06-04 01:41:44 +0000 |
commit | 3adb868e04c2e9bf81a36e6b85722d02172d498a (patch) | |
tree | cad9176e141ca0c43a7871b9c8000e2adcfb7b11 /source3 | |
parent | b1eaa2f17e0afbe864482fe4eb2d24a9a98d1b4a (diff) | |
download | samba-3adb868e04c2e9bf81a36e6b85722d02172d498a.tar.gz samba-3adb868e04c2e9bf81a36e6b85722d02172d498a.tar.bz2 samba-3adb868e04c2e9bf81a36e6b85722d02172d498a.zip |
Fix long list scrolling bug.
Added some padding around the filter entry to make it look nicer.
When resizing the window the scrolling list should get bigger/smaller
not the filter entry widget.
(This used to be commit f504be133cd9659163a609eb11a09a36e56166ee)
Diffstat (limited to 'source3')
-rwxr-xr-x | source3/python/gtdbtool | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/source3/python/gtdbtool b/source3/python/gtdbtool index 670fca9973..6513366790 100755 --- a/source3/python/gtdbtool +++ b/source3/python/gtdbtool @@ -44,19 +44,18 @@ class gtdbtool: scrolled_win = GtkScrolledWindow() scrolled_win.set_policy(POLICY_AUTOMATIC, POLICY_AUTOMATIC) vbox.pack_start(scrolled_win) - scrolled_win.set_usize(350,400) scrolled_win.show() hbox = GtkHBox() - vbox.pack_end(hbox) + vbox.pack_end(hbox, expand = 0, padding = 5) hbox.show() label = GtkLabel("Filter:") - hbox.pack_start(label, expand = 0) + hbox.pack_start(label, expand = 0, padding = 5) label.show() self.entry = GtkEntry() - hbox.pack_end(self.entry) + hbox.pack_end(self.entry, padding = 5) self.entry.show() self.entry.connect("activate", self.filter_activated) |