Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activity.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/activity.py b/activity.py
index 6dcb10f..d746d35 100644
--- a/activity.py
+++ b/activity.py
@@ -279,11 +279,11 @@ class Chat(activity.Activity):
self.entry = entry
hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL)
- hbox.add(entry)
+ hbox.pack_start(self.entry, True, True, 0)
box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, homogeneous=False)
- box.pack_start(self.chatbox, expand=True, fill=True, padding=0)
- box.pack_start(hbox, expand=False, fill=True, padding=0)
+ box.pack_start(self.chatbox, True, True, 0)
+ box.pack_start(hbox, False, True, 0)
return box