Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/face.py
diff options
context:
space:
mode:
authorflavio <fdanesse@gmail.com>2012-07-26 01:47:04 (GMT)
committer flavio <fdanesse@gmail.com>2012-07-26 01:47:04 (GMT)
commit4f90528655ebda14239c94aef85b47abd31132d8 (patch)
treea20be4b9920a3e1c02b239917adf7ec6bf08e92f /face.py
parentfe26ee12045fa518c5a0079bc9ddf5b331c88765 (diff)
size corrections
Diffstat (limited to 'face.py')
-rw-r--r--face.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/face.py b/face.py
index 44efda3..6aa3151 100644
--- a/face.py
+++ b/face.py
@@ -96,7 +96,6 @@ class Status:
class View(Gtk.EventBox):
def __init__(self, fill_color=style.COLOR_BUTTON_GREY):
Gtk.EventBox.__init__(self)
-
self.status = Status()
self.fill_color = fill_color
@@ -169,9 +168,9 @@ class View(Gtk.EventBox):
for i in status.eyes:
eye = i(self.fill_color)
self._eyes.append(eye)
- self._eyebox.pack_start(eye, FACE_PAD, False, 0)
+ self._eyebox.pack_start(eye, True, True, 0)
eye.show()
-
+
self._mouth = status.mouth(self._audio, self.fill_color)
self._mouth.show()
self._mouthbox.add(self._mouth)