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-05-06 17:41:27 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-06 17:41:27 +0400
commitfbf06d0f5d5f2990256c89598c825b4dfa7da063 (patch)
treecdb2d54084c6fc0e9d42535d6e7f5c48ce031f92
parent3d8e58751c3801a6ad2e00ed7c35059e827059b2 (diff)
update for recent RNA change
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 503229f5593..f220ec19bfe 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -145,10 +145,10 @@ class VIEW3D_PT_tools_meshedit(View3DPanel, Panel):
row = col.row(align=True)
props = row.operator("mesh.knife_tool", text="Knife")
props.use_occlude_geometry = True
- props.only_select = False
+ props.only_selected = False
props = row.operator("mesh.knife_tool", text="Select")
props.use_occlude_geometry = False
- props.only_select = True
+ props.only_selected = True
col = layout.column(align=True)
col.label(text="Remove:")