Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Ortiz <rafael@activitycentral.com>2012-07-27 20:32:20 (GMT)
committer Rafael Ortiz <rafael@activitycentral.com>2012-07-27 20:32:20 (GMT)
commitce7aa76485f7b33d3af415cf088077cdd97835ed (patch)
tree6db7c9b34cac6f583dbedae1cd0a8dff5919b8e8
parent8250cd4f34a7d9a1992b96f429ecf6caca4a3236 (diff)
adding descriptors to pack_start
-rw-r--r--face.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/face.py b/face.py
index 2f790e5..a0e50cf 100644
--- a/face.py
+++ b/face.py
@@ -116,8 +116,8 @@ class View(Gtk.EventBox):
# layout the screen
box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
box.set_homogeneous(False)
- box.pack_start(self._eyebox, True, True, 0)
- box.pack_start(self._mouthbox, False, False, 0)
+ box.pack_start(self._eyebox, expand=True, fill=True, padding=0)
+ box.pack_start(self._mouthbox, exapand=False, fill=False, padding=0)
box.set_border_width(FACE_PAD)
self.modify_bg(0, self.fill_color.get_gdk_color())
self.add(box)