Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAneesh Dogra <lionaneesh@gmail.com>2012-12-09 12:34:13 (GMT)
committer Aneesh Dogra <lionaneesh@gmail.com>2012-12-09 12:34:13 (GMT)
commit36b9990c7547a0bcd96b9176f16af07c6569c1bb (patch)
tree4954dc64921f0f8c3ace908abca765dc124c6dea
parentba604ca92fdd0173599740271b99b0c9a87f787d (diff)
Some more fixes.
-rw-r--r--purk/windows.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/purk/windows.py b/purk/windows.py
index c86ea26..8ac436f 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, False, True, 0)
+ self.pack_end(self.input, True, False, 0)
topbox = Gtk.ScrolledWindow()
topbox.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC)
topbox.add(self.output)
- self.pack_end(topbox, False, True, 0)
+ self.pack_end(topbox, True, False, 0)
self.show_all()