Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/constants.py
diff options
context:
space:
mode:
authorerikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-11-29 16:50:27 (GMT)
committer erikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-11-29 16:50:27 (GMT)
commit9385f6867aef75779e972e4a0a858011d8c34c7a (patch)
tree161ac6b1e948ee3564592b6767054eebc78b4dcd /constants.py
parent04e83c4a012ab64e4f990e71d87bb7f68a80e7d7 (diff)
added full-insenstive button and loader code
git-svn-id: http://mediamods.com/public-svn/camera-activity/Record.activity@913 574bc980-5f2d-0410-acbc-c8f9f0eb14e0
Diffstat (limited to 'constants.py')
-rw-r--r--constants.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/constants.py b/constants.py
index d623242..71ba140 100644
--- a/constants.py
+++ b/constants.py
@@ -221,6 +221,11 @@ class Constants:
self.__class__.recInsensitiveImg = gtk.Image()
self.__class__.recInsensitiveImg.set_from_pixbuf( recInsPixbuf )
+ fullInsFile = os.path.join(self.__class__.gfxPath, 'full-insensitive.png')
+ fullInsPixbuf = gtk.gdk.pixbuf_new_from_file(fullInsFile)
+ self.__class__.fullInsensitiveImg = gtk.Image()
+ self.__class__.fullInsensitiveImg.set_from_pixbuf( fullInsPixbuf )
+
recPlayFile = os.path.join(self.__class__.gfxPath, 'media-play.png')
recPlayPixbuf = gtk.gdk.pixbuf_new_from_file(recPlayFile)
self.__class__.recPlayImg = gtk.Image()