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>2014-08-07 23:30:22 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-08-07 23:30:22 +0400
commit9a8e889dfce6f0263760764ac07dc439cd0c313b (patch)
tree430a99fa1a96930467e6c1d00dd54fe40eaee270
parente1819cc9183e2f167c42025581c96a1488911bef (diff)
Fix T41173: CM view selection is difficult with multiple views
Use drop-down menu instead of expanded enum for the view select. There are usually more views than displays and using drop-down for display device and expanded enum for view is kindof strange.
-rw-r--r--source/blender/editors/interface/interface_templates.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_templates.c b/source/blender/editors/interface/interface_templates.c
index b2b3493d4fc..cb5f5331c2e 100644
--- a/source/blender/editors/interface/interface_templates.c
+++ b/source/blender/editors/interface/interface_templates.c
@@ -3602,7 +3602,7 @@ void uiTemplateColormanagedViewSettings(uiLayout *layout, bContext *UNUSED(C), P
col = uiLayoutColumn(layout, false);
row = uiLayoutRow(col, false);
- uiItemR(row, &view_transform_ptr, "view_transform", UI_ITEM_R_EXPAND, IFACE_("View"), ICON_NONE);
+ uiItemR(row, &view_transform_ptr, "view_transform", 0, IFACE_("View"), ICON_NONE);
col = uiLayoutColumn(layout, false);
uiItemR(col, &view_transform_ptr, "exposure", 0, NULL, ICON_NONE);