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:
authorThomas Dinges <blender@dingto.org>2011-09-10 13:21:46 +0400
committerThomas Dinges <blender@dingto.org>2011-09-10 13:21:46 +0400
commit8ed1c07a7b21d916f149dfa00649579165c45979 (patch)
tree0a51bd8a346799618263ae9033ee1f506c1f4068 /release
parent571f7db529c3e0f351b90e7e76b1e7aba878b3a7 (diff)
Navigation Mesh Modifier:
* Fix scons define for operator append * Don't use abbreviations in the UI.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_modifier.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_modifier.py b/release/scripts/startup/bl_ui/properties_data_modifier.py
index d8860d98654..8e90dc3216e 100644
--- a/release/scripts/startup/bl_ui/properties_data_modifier.py
+++ b/release/scripts/startup/bl_ui/properties_data_modifier.py
@@ -380,9 +380,8 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
col.prop(md, "mirror_object", text="")
def NAVMESH(self, layout, ob, md):
- row = layout.row()
- row.operator("object.assign_navpolygon", text="Assign poly idx")
- row.operator("object.assign_new_navpolygon", text="Assign new poly idx")
+ layout.operator("object.assign_navpolygon")
+ layout.operator("object.assign_new_navpolygon")
def MULTIRES(self, layout, ob, md):
layout.row().prop(md, "subdivision_type", expand=True)