From a2639c6558cc5af6bc49a9cbb65ddac1e265510b Mon Sep 17 00:00:00 2001 From: Aneesh Dogra Date: Mon, 17 Dec 2012 21:02:52 +0000 Subject: More fixes. --- (limited to 'purk/windows.py') diff --git a/purk/windows.py b/purk/windows.py index 11903dd..32ba876 100644 --- a/purk/windows.py +++ b/purk/windows.py @@ -160,13 +160,13 @@ class SimpleWindow(Window): self.focus = self.input.grab_focus self.connect("key-press-event", self.transfer_text) - self.pack_end(self.input, expand=False) + self.pack_end(self.input, False, True, 0) topbox = Gtk.ScrolledWindow() topbox.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.NEVER) topbox.add(self.output) - self.pack_end(topbox) + self.pack_end(topbox, True, True, 0) self.show_all() @@ -222,7 +222,7 @@ class QueryWindow(Window): topbox.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC) topbox.add(self.output) - self.pack_end(topbox) + self.pack_end(topbox, True, True, 0) self.show_all() -- cgit v0.9.1