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:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-04-20 16:02:03 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-04-20 16:02:03 +0300
commit48c9208d56de08103e789ac5f8df0ccf19506f3e (patch)
tree94e2d3f09e2f7cc92a485754790480aec4986256 /release/scripts/startup/bl_ui/space_image.py
parente50d2292733b8d50437a9848fc82ee0715f6dec0 (diff)
Fix T46903: Missing Render Border Menu items
While other borders are more like a toggle, it is an intrinsic behavior of those operators. Render Border is intrinsicly split into two operators and trying to expose it as a toggle will end up with rather confusing situation when shortcut listed in the menu changes depending on the context.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_image.py')
-rw-r--r--release/scripts/startup/bl_ui/space_image.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py
index 10b4e24efd9..fbea07a317e 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -113,6 +113,11 @@ class IMAGE_MT_view(Menu):
layout.separator()
if show_render:
+ layout.operator("image.render_border")
+ layout.operator("image.clear_render_border")
+
+ layout.separator()
+
layout.operator("image.cycle_render_slot", text="Render Slot Cycle Next")
layout.operator("image.cycle_render_slot", text="Render Slot Cycle Previous").reverse = True
layout.separator()