[Bf-blender-cvs] [42f9430a3a9] master: Fix: Warning from incorrect use of macro

Hans Goudey noreply at git.blender.org
Wed Aug 3 16:40:53 CEST 2022


Commit: 42f9430a3a901ec8f27ab70727ca8b2138309536
Author: Hans Goudey
Date:   Wed Aug 3 09:41:01 2022 -0500
Branches: master
https://developer.blender.org/rB42f9430a3a901ec8f27ab70727ca8b2138309536

Fix: Warning from incorrect use of macro

>From d52551401e18, exposed by recent C++ conversion.

===================================================================

M	source/blender/editors/interface/interface_panel.cc

===================================================================

diff --git a/source/blender/editors/interface/interface_panel.cc b/source/blender/editors/interface/interface_panel.cc
index 53f1265ee74..9199e6d052d 100644
--- a/source/blender/editors/interface/interface_panel.cc
+++ b/source/blender/editors/interface/interface_panel.cc
@@ -1285,7 +1285,7 @@ bool UI_panel_should_show_background(const ARegion *region, const PanelType *pan
 void UI_panel_category_draw_all(ARegion *region, const char *category_id_active)
 {
   // #define USE_FLAT_INACTIVE
-  const bool is_left = (bool)RGN_ALIGN_ENUM_FROM_MASK(region->alignment != RGN_ALIGN_RIGHT);
+  const bool is_left = RGN_ALIGN_ENUM_FROM_MASK(region->alignment) != RGN_ALIGN_RIGHT;
   View2D *v2d = &region->v2d;
   const uiStyle *style = UI_style_get();
   const uiFontStyle *fstyle = &style->widget;



More information about the Bf-blender-cvs mailing list