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:
authorAntony Riakiotakis <kalast@gmail.com>2014-08-25 02:15:43 +0400
committerAntony Riakiotakis <kalast@gmail.com>2014-08-25 02:15:43 +0400
commit20700ca43e630d21f09c99ca8a888b45f0014dfc (patch)
treeead2b4f83b9ca92a7b544e7786ac0d365db5bc35 /release/scripts/startup/bl_ui/space_view3d_toolbar.py
parentae31b25fb5d2561bee49933ab6ae64194c0cd404 (diff)
Based on user input that we never listen to:
* Move "save all edited" operator to layer tab * Duplicate operator in image menu in image editor.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d_toolbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 61f749cc3e8..d3dc6313cff 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -1087,6 +1087,9 @@ class VIEW3D_PT_slots_projectpaint(View3DPanel, Panel):
col.label("UV Map")
col.prop_search(slot, "uv_layer", ob.data, "uv_textures", text="")
+ col.separator()
+ col.operator("image.save_dirty", text="Save All Images")
+
class VIEW3D_PT_stencil_projectpaint(View3DPanel, Panel):
@@ -1626,7 +1629,6 @@ class VIEW3D_PT_tools_imagepaint_external(Panel, View3DPaintPanel):
col.row().prop(ipaint, "screen_grab_size", text="")
col.operator("paint.project_image", text="Apply Camera Image")
- col.operator("image.save_dirty", text="Save All Edited")
class VIEW3D_PT_tools_projectpaint(View3DPaintPanel, Panel):