Blame SOURCES/0005-Use-smaller-title-text-size-so-that-it-fits-on-the-s.patch

acc58b
From 0fbd9ec83a7868babae347b4e93d18135f664139 Mon Sep 17 00:00:00 2001
acc58b
From: Martin Kolman <mkolman@redhat.com>
acc58b
Date: Tue, 9 Sep 2014 14:19:23 +0200
acc58b
Subject: [PATCH] Use smaller title text size so that it fits on the screen
acc58b
 (#1040583)
acc58b
acc58b
I've tried to use set_line_wrap(), but it introduced weird layout
acc58b
issues. Changing the text size works just as well, seems to be more
acc58b
robust and even works fine on 800x600.
acc58b
acc58b
Resolves: rhbz#1040583
acc58b
---
acc58b
 firstboot/module.py | 2 +-
acc58b
 1 file changed, 1 insertion(+), 1 deletion(-)
acc58b
acc58b
diff --git a/firstboot/module.py b/firstboot/module.py
acc58b
index 1b7fadc..6c4c918 100644
acc58b
--- a/firstboot/module.py
acc58b
+++ b/firstboot/module.py
acc58b
@@ -166,7 +166,7 @@ class Module:
acc58b
         # Create the large label that goes at the top of the right side.
acc58b
         label = gtk.Label("")
acc58b
         label.set_alignment(0.0, 0.5)
acc58b
-        label.set_markup("%s" % _(self.title))
acc58b
+        label.set_markup("%s" % _(self.title))
acc58b
 
acc58b
         titleBox = gtk.HBox()
acc58b
 
acc58b
-- 
acc58b
1.9.3
acc58b