Fixing sizing of
authorEd Page <eopage@byu.net>
Tue, 18 May 2010 03:04:56 +0000 (22:04 -0500)
committerEd Page <eopage@byu.net>
Tue, 18 May 2010 03:04:56 +0000 (22:04 -0500)
* Source Selection buttons
* Radio header
* Misc other

data/conference.png
data/magazines.png
data/radio.png
data/radio_header.png
data/scriptures.png
src/mormonchannel_gtk.py
src/windows/source.py

index b27becd..6f62f08 100644 (file)
Binary files a/data/conference.png and b/data/conference.png differ
index 73aecec..f30fe0e 100644 (file)
Binary files a/data/magazines.png and b/data/magazines.png differ
index 7082d15..7c70633 100644 (file)
Binary files a/data/radio.png and b/data/radio.png differ
index 271deaf..f4faa65 100644 (file)
Binary files a/data/radio_header.png and b/data/radio_header.png differ
index 665c92d..c8c06bf 100644 (file)
Binary files a/data/scriptures.png and b/data/scriptures.png differ
index 91febe9..f3e541e 100755 (executable)
@@ -4,7 +4,6 @@
 """
 @todo Fix scrollto for Fremantle
 @todo backgrounds need some resizing
 """
 @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)
 @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)
index 42c72fc..56a745d 100644 (file)
@@ -80,7 +80,8 @@ class SourceSelector(windows._base.BasicWindow):
                image = self._store.get_image_from_store(self._store.STORE_LOOKUP[icon])
 
                label = gtk.Label()
                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("<big>%s</big>" % message)
 
                buttonLayout = gtk.HBox(False, 5)
                buttonLayout.pack_start(image, False, False)
 
                buttonLayout = gtk.HBox(False, 5)
                buttonLayout.pack_start(image, False, False)