Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/keyboard.py
diff options
context:
space:
mode:
Diffstat (limited to 'keyboard.py')
-rw-r--r--keyboard.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/keyboard.py b/keyboard.py
index f347790..076f015 100644
--- a/keyboard.py
+++ b/keyboard.py
@@ -409,6 +409,8 @@ class KeyboardWidget(KeyboardData, gtk.DrawingArea):
self.connect("expose-event", self._expose_cb)
+ self.modify_font(pango.FontDescription('Monospace 10'))
+
# Active language group and modifier state.
# See http://www.pygtk.org/docs/pygtk/class-gdkkeymap.html for more
# information about key group and state.
@@ -500,7 +502,8 @@ class KeyboardWidget(KeyboardData, gtk.DrawingArea):
try:
layout = self.create_pango_layout(unicode(text))
- draw.draw_layout(gc, x1+8, y2-28, layout)
+ layout.set_font_description(pango.FontDescription('Monospace 12'))
+ draw.draw_layout(gc, x1+8, y2-23, layout)
except:
pass