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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-05-13 15:10:05 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-05-13 15:48:55 +0300
commit7a2e271e5439d1888b21e4dafe782027f6ef0f77 (patch)
tree81b5981478350b28c49f12d390c7de5ca0a42907 /source/blender/editors/interface
parent3469e623d3174ff4e82c430478640dfacd0e63ff (diff)
Fix compiler warnings.
Diffstat (limited to 'source/blender/editors/interface')
-rw-r--r--source/blender/editors/interface/interface_layout.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/source/blender/editors/interface/interface_layout.c b/source/blender/editors/interface/interface_layout.c
index f0ea6466763..d9db5c930fc 100644
--- a/source/blender/editors/interface/interface_layout.c
+++ b/source/blender/editors/interface/interface_layout.c
@@ -846,8 +846,9 @@ static uiBut *uiItemFullO_ptr_ex(
w = ui_text_icon_width(layout, name, icon, 0);
int prev_emboss = layout->emboss;
- if (flag & UI_ITEM_R_NO_BG)
+ if (flag & UI_ITEM_R_NO_BG) {
layout->emboss = UI_EMBOSS_NONE;
+ }
/* create the button */
if (icon) {
@@ -868,10 +869,9 @@ static uiBut *uiItemFullO_ptr_ex(
if ((layout->root->type == UI_LAYOUT_TOOLBAR) && !icon)
but->drawflag |= UI_BUT_TEXT_LEFT;
- if (flag & UI_ITEM_R_NO_BG)
+ if (flag & UI_ITEM_R_NO_BG) {
layout->emboss = prev_emboss;
-
- if (flag & UI_ITEM_R_NO_BG)
+ }
if (flag & UI_ITEM_O_DEPRESS) {
but->flag |= UI_SELECT_DRAW;
@@ -1501,8 +1501,9 @@ void uiItemFullR(uiLayout *layout, PointerRNA *ptr, PropertyRNA *prop, int index
ui_item_rna_size(layout, name, icon, ptr, prop, index, icon_only, compact, &w, &h);
int prev_emboss = layout->emboss;
- if (flag & UI_ITEM_R_NO_BG)
+ if (no_bg) {
layout->emboss = UI_EMBOSS_NONE;
+ }
/* array property */
if (index == RNA_NO_INDEX && is_array)
@@ -1548,8 +1549,9 @@ void uiItemFullR(uiLayout *layout, PointerRNA *ptr, PropertyRNA *prop, int index
UI_but_flag_enable(but, UI_BUT_LIST_ITEM);
}
- if (flag & UI_ITEM_R_NO_BG)
+ if (no_bg) {
layout->emboss = prev_emboss;
+ }
/* ensure text isn't added to icon_only buttons */
if (but && icon_only) {