Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2014-06-16 14:06:38 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2014-06-16 15:26:39 (GMT)
commit3895600226bbac2494c3d6e9c78d643e4949db35 (patch)
tree9c9be1b96fbacaae69c648f3c1703d393c22f880
parent87573c6f21032a28f0acdb40b0859738e6f2d989 (diff)
Reduce font size on FinishWindow
-rw-r--r--game.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/game.py b/game.py
index f168ac8..72674b9 100644
--- a/game.py
+++ b/game.py
@@ -609,8 +609,8 @@ class FinishWindow(Gtk.Window):
grid.set_orientation(Gtk.Orientation.VERTICAL)
title = Gtk.Label()
- title_font_size = style.FONT_SIZE * 3.5
- text_font_size = style.FONT_SIZE * 2.5
+ title_font_size = style.FONT_SIZE * 3
+ text_font_size = style.FONT_SIZE * 2
title.set_markup('<span font="%d" color="white">%s</span>' %
(title_font_size, _('Maze solved!')))