Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TODO1
-rwxr-xr-xcolors.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/TODO b/TODO
index daef22e..13349d6 100644
--- a/TODO
+++ b/TODO
@@ -2,7 +2,6 @@ Colors!
+ Add the current brush above the new brush in the palette window.
+ Add MIME type, link to gallery site.
-+ Help dropdown - text based is fine.
+ Publish tutorials on DailyMotion
+ New toolbars.
+ Reimplement reference image as a way to set the initial canvas.
diff --git a/colors.py b/colors.py
index 5222c89..37bf493 100755
--- a/colors.py
+++ b/colors.py
@@ -729,6 +729,7 @@ class Colors(activity.Activity, ExportedGObject):
def init_camera (self):
self.camera_enabled = False
+ self.videopaintbtn.set_sensitive(False)
try:
camera_list = camera.list_cameras()
@@ -738,6 +739,7 @@ class Colors(activity.Activity, ExportedGObject):
self.camsmall = surface.Surface((240,180),0,self.camcapture)
self.camhsv = surface.Surface((240,180),0,self.camcapture)
self.camera_enabled = True
+ self.videopaintbtn.set_sensitive(True)
else:
log.debug('No cameras found, videopaint disabled.')