[Bf-blender-cvs] [20700ca] master: Based on user input that we never listen to:

Antony Riakiotakis noreply at git.blender.org
Mon Aug 25 00:16:03 CEST 2014


Commit: 20700ca43e630d21f09c99ca8a888b45f0014dfc
Author: Antony Riakiotakis
Date:   Mon Aug 25 00:15:43 2014 +0200
Branches: master
https://developer.blender.org/rB20700ca43e630d21f09c99ca8a888b45f0014dfc

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.

===================================================================

M	release/scripts/startup/bl_ui/space_image.py
M	release/scripts/startup/bl_ui/space_view3d_toolbar.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py
index b3ba3b6..310bbb3 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -176,6 +176,8 @@ class IMAGE_MT_image(Menu):
 
         layout.operator("image.read_renderlayers")
 
+        layout.operator("image.save_dirty", text="Save All Images")
+
         if ima:
             if not show_render:
                 layout.operator("image.replace")
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 61f749c..d3dc631 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):




More information about the Bf-blender-cvs mailing list