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>2019-05-23 12:40:15 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-05-23 12:41:13 +0300
commit481e13a2dd05cef48815f97665474e2585d7de32 (patch)
tree2fa43f34ffb048629581624a76796d55750ded31
parent11e87510efc9be6ca046492ca8682b52cb1cdfca (diff)
Image space, view menu: Fix access uninitialized variable
Seems to be a copy-paste mistake in 7a2b203, causing menu to be almost empty.
-rw-r--r--release/scripts/startup/bl_ui/space_image.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py
index 62d7240a188..88350920772 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -81,7 +81,7 @@ class IMAGE_MT_view(Menu):
layout.prop(sima, "show_region_toolbar")
layout.prop(sima, "show_region_ui")
- layout.prop(view, "show_region_tool_header")
+ layout.prop(sima, "show_region_tool_header")
layout.prop(sima, "show_region_hud")
layout.separator()