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:
Diffstat (limited to 'release/scripts/startup/bl_ui/space_image.py')
-rw-r--r--release/scripts/startup/bl_ui/space_image.py11
1 files changed, 4 insertions, 7 deletions
diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py
index 436cf4e4cad..b77d2851574 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -560,14 +560,11 @@ class IMAGE_HT_header(Header):
row = layout.row()
row.template_ID(sima, "mask", new="mask.new")
- layout.separator_spacer()
-
- if show_uvedit or show_maskedit or mode == 'PAINT':
- layout.prop(sima, "use_realtime_update", icon_only=True, icon='FILE_REFRESH')
-
if not show_render:
layout.prop(sima, "use_image_pin", text="")
+ layout.separator_spacer()
+
if show_uvedit:
uvedit = sima.uv_editor
@@ -852,8 +849,8 @@ class IMAGE_PT_render_slots(Panel):
)
col = row.column(align=True)
- col.operator("image.add_render_slot", icon='ZOOMIN', text="")
- col.operator("image.remove_render_slot", icon='ZOOMOUT', text="")
+ col.operator("image.add_render_slot", icon='ADD', text="")
+ col.operator("image.remove_render_slot", icon='REMOVE', text="")
col.separator()