Clenaup: odd use of ternary operators
This commit is contained in:
@@ -1706,7 +1706,7 @@ int ui_but_is_pushed_ex(uiBut *but, double *value)
|
||||
int is_push = 0;
|
||||
|
||||
if (but->bit) {
|
||||
const bool state = ELEM(but->type, UI_BTYPE_TOGGLE_N, UI_BTYPE_ICON_TOGGLE_N, UI_BTYPE_CHECKBOX_N) ? false : true;
|
||||
const bool state = !ELEM(but->type, UI_BTYPE_TOGGLE_N, UI_BTYPE_ICON_TOGGLE_N, UI_BTYPE_CHECKBOX_N);
|
||||
int lvalue;
|
||||
UI_GET_BUT_VALUE_INIT(but, *value);
|
||||
lvalue = (int)*value;
|
||||
|
@@ -798,7 +798,7 @@ static void paint_draw_alpha_overlay(
|
||||
{
|
||||
/* Color means that primary brush texture is colored and
|
||||
* secondary is used for alpha/mask control. */
|
||||
bool col = ELEM(mode, PAINT_MODE_TEXTURE_3D, PAINT_MODE_TEXTURE_2D, PAINT_MODE_VERTEX) ? true : false;
|
||||
bool col = ELEM(mode, PAINT_MODE_TEXTURE_3D, PAINT_MODE_TEXTURE_2D, PAINT_MODE_VERTEX);
|
||||
eOverlayControlFlags flags = BKE_paint_get_overlay_flags();
|
||||
gpuPushAttr(GPU_DEPTH_BUFFER_BIT | GPU_BLEND_BIT);
|
||||
|
||||
|
Reference in New Issue
Block a user