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:
authorAleksandr Zinovev <roaoao@gmail.com>2017-08-08 17:37:21 +0300
committerAleksandr Zinovev <roaoao@gmail.com>2017-08-08 17:37:51 +0300
commit4fe1bf85afa01a31a703bb47e794c2e9ebc10614 (patch)
tree5b9833797cf4a9f7200fa47e5bd6f9c77b98594e
parentddfd57c0d275e6222f9622379b4c716e868029ce (diff)
Fix fixed width box layouts
Regression, to be backported in 2.79.
-rw-r--r--source/blender/editors/interface/interface_layout.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_layout.c b/source/blender/editors/interface/interface_layout.c
index dc2b97acf65..804ffec7997 100644
--- a/source/blender/editors/interface/interface_layout.c
+++ b/source/blender/editors/interface/interface_layout.c
@@ -2465,7 +2465,6 @@ static void ui_litem_estimate_box(uiLayout *litem)
uiStyle *style = litem->root->style;
ui_litem_estimate_column(litem, true);
- litem->item.flag &= ~UI_ITEM_MIN;
litem->w += 2 * style->boxspace;
litem->h += 2 * style->boxspace;
}