From 243a9254ea579915e697cfde59e9c4f6e9ffd4ee Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Fri, 22 Mar 2019 16:01:25 -0300 Subject: [PATCH] Fix warning for uninitialized icon_only Warning/issue introduced on rBcaa357dae70322e. --- source/blender/editors/interface/interface_layout.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/interface/interface_layout.c b/source/blender/editors/interface/interface_layout.c index e4f5c165aec..98e25e1b90f 100644 --- a/source/blender/editors/interface/interface_layout.c +++ b/source/blender/editors/interface/interface_layout.c @@ -1599,9 +1599,11 @@ void uiItemFullR(uiLayout *layout, PointerRNA *ptr, PropertyRNA *prop, int index is_array = RNA_property_array_check(prop); len = (is_array) ? RNA_property_array_length(ptr, prop) : 0; + icon_only = (flag & UI_ITEM_R_ICON_ONLY) != 0; + /* set name and icon */ if (!name) { - if ((flag & UI_ITEM_R_ICON_ONLY) == 0) { + if (!icon_only) { name = RNA_property_ui_name(prop); } else { @@ -1682,7 +1684,6 @@ void uiItemFullR(uiLayout *layout, PointerRNA *ptr, PropertyRNA *prop, int index slider = (flag & UI_ITEM_R_SLIDER) != 0; toggle = (flag & UI_ITEM_R_TOGGLE) != 0; expand = (flag & UI_ITEM_R_EXPAND) != 0; - icon_only = (flag & UI_ITEM_R_ICON_ONLY) != 0; no_bg = (flag & UI_ITEM_R_NO_BG) != 0; compact = (flag & UI_ITEM_R_COMPACT) != 0;