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.
This commit is contained in:
Antonis Ryakiotakis 2014-08-25 00:15:43 +02:00
parent ae31b25fb5
commit 20700ca43e
2 changed files with 5 additions and 1 deletions

View File

@ -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")

View File

@ -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):