fix Button_Brush_FX()

the test on Quit_is_required was wrong
This commit is contained in:
Thomas Bernard 2019-02-15 13:04:01 +01:00
parent 84fbe26e8a
commit 22a895f45c
No known key found for this signature in database
GPG Key ID: 0FF11B67A5C0863C

View File

@ -4042,7 +4042,7 @@ void Button_Brush_FX(int btn)
clicked_button=1; clicked_button=1;
} }
} }
while (clicked_button<=0 && Quit_is_required); while (clicked_button<=0 && !Quit_is_required);
Close_window(); Close_window();
Unselect_button(btn); Unselect_button(btn);