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>2010-06-09 18:04:34 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-06-09 18:04:34 +0400
commit6cc6f8495f0dbf69afea98cbcde94ebb453b0783 (patch)
tree4f3352bdd590d352b7fb36903ea69d50935a2b99 /release
parent0ef243122032307f225033bc5454b6fe20fe09ad (diff)
- added a flag argument to WM_operator_properties_filesel() currently only used for relative path option.
- added relative option to saving external multires data - renamed multires external functiosn to have save / pack as suffix. - added TODO's for file select operators that should support relative paths but dont. - also disable openmp on linux cross compile, mingw currently isnt linking -lgomp
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_data_modifier.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/ui/properties_data_modifier.py b/release/scripts/ui/properties_data_modifier.py
index cd80d3e9c91..8e85b7dfb97 100644
--- a/release/scripts/ui/properties_data_modifier.py
+++ b/release/scripts/ui/properties_data_modifier.py
@@ -452,12 +452,12 @@ class DATA_PT_modifiers(DataButtonsPanel):
col = layout.column()
row = col.row()
if md.external:
- row.operator("object.multires_pack_external", text="Pack External")
+ row.operator("object.multires_external_pack", text="Pack External")
row.label()
row = col.row()
row.prop(md, "filepath", text="")
else:
- row.operator("object.multires_save_external", text="Save External...")
+ row.operator("object.multires_external_save", text="Save External...")
row.label()
def PARTICLE_INSTANCE(self, layout, ob, md, wide_ui):