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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/purk/windows.py b/purk/windows.py
index d00b8f7..c86ea26 100644
--- a/purk/windows.py
+++ b/purk/windows.py
@@ -213,7 +213,7 @@ class QueryWindow(Window):
self.connect("key-press-event", self.transfer_text)
botbox = Gtk.HBox()
- botbox.pack_start(self.input)
+ botbox.add(self.input)
botbox.pack_end(self.nick_label, False, True, 0)
self.pack_end(botbox, False, True, 0)
@@ -283,7 +283,7 @@ class ChannelWindow(Window):
nlbox.set_size_request(conf.get("ui-gtk/nicklist-width", 112), -1)
botbox = Gtk.HBox()
- botbox.pack_start(self.input)
+ botbox.add(self.input)
botbox.pack_end(self.nick_label, False, True, 0)
self.pack_end(botbox, False, True, 0)