From: Ed Page Date: Tue, 18 May 2010 03:04:56 +0000 (-0500) Subject: Fixing sizing of X-Git-Url: http://git.maemo.org/git/?p=watersofshiloah;a=commitdiff_plain;h=9081b983a67017f0815b8540072a1265c6b5d566 Fixing sizing of * Source Selection buttons * Radio header * Misc other --- diff --git a/data/conference.png b/data/conference.png index b27becd..6f62f08 100644 Binary files a/data/conference.png and b/data/conference.png differ diff --git a/data/magazines.png b/data/magazines.png index 73aecec..f30fe0e 100644 Binary files a/data/magazines.png and b/data/magazines.png differ diff --git a/data/radio.png b/data/radio.png index 7082d15..7c70633 100644 Binary files a/data/radio.png and b/data/radio.png differ diff --git a/data/radio_header.png b/data/radio_header.png index 271deaf..f4faa65 100644 Binary files a/data/radio_header.png and b/data/radio_header.png differ diff --git a/data/scriptures.png b/data/scriptures.png index 665c92d..c8c06bf 100644 Binary files a/data/scriptures.png and b/data/scriptures.png differ diff --git a/src/mormonchannel_gtk.py b/src/mormonchannel_gtk.py index 91febe9..f3e541e 100755 --- a/src/mormonchannel_gtk.py +++ b/src/mormonchannel_gtk.py @@ -4,7 +4,6 @@ """ @todo Fix scrollto for Fremantle @todo backgrounds need some resizing -@todo Icons on source selector need work @todo Re-use windows for better performance @bug For some reason, the back/close button doesn't work when I nest multiple levels @todo Need to confirm id's are persistent (not just for todos but broken behavior on transition) diff --git a/src/windows/source.py b/src/windows/source.py index 42c72fc..56a745d 100644 --- a/src/windows/source.py +++ b/src/windows/source.py @@ -80,7 +80,8 @@ class SourceSelector(windows._base.BasicWindow): image = self._store.get_image_from_store(self._store.STORE_LOOKUP[icon]) label = gtk.Label() - label.set_text(message) + label.set_use_markup(True) + label.set_markup("%s" % message) buttonLayout = gtk.HBox(False, 5) buttonLayout.pack_start(image, False, False)