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-12-10 13:23:53 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-12-10 13:23:53 +0300
commitb5740b0e779e76d599f819cf106009aea663d0bf (patch)
tree0ea9c2cb18b586449ff4d14adf925fd0b68394f9 /release/scripts/ui/space_nla.py
parent9c5019a9a9acd33c4757a0a1d4f0944c92e57ffd (diff)
remove ICON prefix from the enum, for python this is redundant eg.
layout.prop("setting", icon='ICON_BLAH_BLAH') Also reverted previous commit, the cursor subtype just needed to be added to the switch statement.
Diffstat (limited to 'release/scripts/ui/space_nla.py')
-rw-r--r--release/scripts/ui/space_nla.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/ui/space_nla.py b/release/scripts/ui/space_nla.py
index d17e5e0b8cb..e9cc77c8633 100644
--- a/release/scripts/ui/space_nla.py
+++ b/release/scripts/ui/space_nla.py
@@ -53,7 +53,7 @@ class NLA_MT_view(bpy.types.Menu):
layout.column()
- layout.operator("nla.properties", icon="ICON_MENU_PANEL")
+ layout.operator("nla.properties", icon='MENU_PANEL')
layout.separator()
layout.prop(st, "show_cframe_indicator")