Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/purk/windows.py
diff options
context:
space:
mode:
authorAneesh Dogra <lionaneesh@gmail.com>2012-12-17 21:02:52 (GMT)
committer Aneesh Dogra <lionaneesh@gmail.com>2012-12-17 21:02:52 (GMT)
commita2639c6558cc5af6bc49a9cbb65ddac1e265510b (patch)
treee4f427064b502bdf8b7806073b34b8389a70027e /purk/windows.py
parent78eccba3bebb2e6b13760e2de238189b8010482f (diff)
More fixes.
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()