Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
authorflavio <fdanesse@gmail.com>2012-08-21 18:44:45 (GMT)
committer flavio <fdanesse@gmail.com>2012-08-21 18:44:45 (GMT)
commit84ce65821cc76e37bc7592353b5a073e492d8da7 (patch)
tree4d3960ff917bc35ad120fd200ea89fa0228fb4ed /activity.py
parent4fe175617d93b2a8f9dea1f0cf92beeb3fa5dd64 (diff)
Corrections in Entrygtk3
Diffstat (limited to 'activity.py')
-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