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-01-01 17:09:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-01-01 17:09:58 +0400
commita49e80c48a7dc23ac388d7846ef47680e752d2d9 (patch)
treedfcef7774c705ff0bd685bc6d5886b23c0823a7a /release/scripts/startup/bl_ui/space_view3d.py
parent9b45d8acad715061ea66a4c609b368a69d27fdbf (diff)
use `props` all over for operator properties vars
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 84d207f4e45..22d0e39a54b 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -1523,17 +1523,17 @@ class VIEW3D_MT_edit_mesh_select_mode(Menu):
layout.operator_context = 'INVOKE_REGION_WIN'
- prop = layout.operator("wm.context_set_value", text="Vertex", icon='VERTEXSEL')
- prop.value = "(True, False, False)"
- prop.data_path = "tool_settings.mesh_select_mode"
+ props = layout.operator("wm.context_set_value", text="Vertex", icon='VERTEXSEL')
+ props.value = "(True, False, False)"
+ props.data_path = "tool_settings.mesh_select_mode"
- prop = layout.operator("wm.context_set_value", text="Edge", icon='EDGESEL')
- prop.value = "(False, True, False)"
- prop.data_path = "tool_settings.mesh_select_mode"
+ props = layout.operator("wm.context_set_value", text="Edge", icon='EDGESEL')
+ props.value = "(False, True, False)"
+ props.data_path = "tool_settings.mesh_select_mode"
- prop = layout.operator("wm.context_set_value", text="Face", icon='FACESEL')
- prop.value = "(False, False, True)"
- prop.data_path = "tool_settings.mesh_select_mode"
+ props = layout.operator("wm.context_set_value", text="Face", icon='FACESEL')
+ props.value = "(False, False, True)"
+ props.data_path = "tool_settings.mesh_select_mode"
class VIEW3D_MT_edit_mesh_extrude(Menu):