Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-04-27 14:00:21 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-27 14:00:21 +0400
commitda1e128d77e4e2932668a06f92ca675b4d899c20 (patch)
treec0fa5fd61ddf2132eb2d49e4357cd359b843f8d3
parent4469ab985761abaacc99eb3d3c6b16a0aee927b1 (diff)
fix for modal timer template, wasnt updated for changes to themes.
-rw-r--r--release/scripts/templates/operator_modal_timer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/templates/operator_modal_timer.py b/release/scripts/templates/operator_modal_timer.py
index ec47390da81..ebbf6395df5 100644
--- a/release/scripts/templates/operator_modal_timer.py
+++ b/release/scripts/templates/operator_modal_timer.py
@@ -14,7 +14,7 @@ class ModalTimerOperator(bpy.types.Operator):
if event.type == 'TIMER':
# change theme color, silly!
- color = context.user_preferences.themes[0].view_3d.back
+ color = context.user_preferences.themes[0].view_3d.space.back
color.s = 1.0
color.h += 0.01