Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/purk/windows.py
diff options
context:
space:
mode:
Diffstat (limited to 'purk/windows.py')
-rw-r--r--purk/windows.py6
1 files changed, 3 insertions, 3 deletions
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()