Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activity.py1
-rw-r--r--face.py4
2 files changed, 3 insertions, 2 deletions
diff --git a/activity.py b/activity.py
index afa9fdb..0b6ea8b 100644
--- a/activity.py
+++ b/activity.py
@@ -147,6 +147,7 @@ class SpeakActivity(SharedActivity):
toolbox.toolbar.insert(ActivityToolbarButton(self), -1)
+ #importing voices to combobox
self.voices = ComboBox()
for name in sorted(voice.allVoices().keys()):
vn = voice.allVoices()[name]
diff --git a/face.py b/face.py
index 6efcbf9..dec365e 100644
--- a/face.py
+++ b/face.py
@@ -117,8 +117,8 @@ class View(Gtk.EventBox):
box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
box.set_homogeneous(False)
box.pack_start(self._eyebox, expand=True, fill=True, padding=0)
- box.pack_start(self._mouthbox, expand=True, fill=True, padding=0)
- box.set_border_width(FACE_PAD)
+ box.pack_start(self._mouthbox, expand=True, fill=True, padding=100)
+ box.set_border_width(0)
self.modify_bg(0, self.fill_color.get_gdk_color())
self.add(box)