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>2009-11-14 16:35:44 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-14 16:35:44 +0300
commitd33291fcc45f17b0bfa6c6021edc47f41f45e76f (patch)
tree9c9e0b3ec8273b8cd35f2b45868b529a88494ff6 /release/scripts/ui/space_time.py
parentaac16ce4ecacf69e3be5a34f3b4a911428e9217a (diff)
used py error checking tools to fix some bugs & make pep8 corrections
Diffstat (limited to 'release/scripts/ui/space_time.py')
-rw-r--r--release/scripts/ui/space_time.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/release/scripts/ui/space_time.py b/release/scripts/ui/space_time.py
index 42734589d48..638656bcee5 100644
--- a/release/scripts/ui/space_time.py
+++ b/release/scripts/ui/space_time.py
@@ -26,7 +26,6 @@ class TIME_HT_header(bpy.types.Header):
def draw(self, context):
layout = self.layout
- st = context.space_data
scene = context.scene
tools = context.tool_settings
screen = context.screen
@@ -103,7 +102,7 @@ class TIME_MT_frame(bpy.types.Menu):
def draw(self, context):
layout = self.layout
- tools = context.tool_settings
+ # tools = context.tool_settings
layout.itemO("marker.add", text="Add Marker")
layout.itemO("marker.duplicate", text="Duplicate Marker")