Skip to content

Commit

Permalink
FLUID: avoiding integer overflow warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthiasWM committed Nov 21, 2024
1 parent d767b8c commit cef968e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fluid/autodoc.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ extern Fl_Double_Window *settings_window;
@{
*/

const int FL_SNAP_TO_WINDOW = 0x7f000000;
const int FL_SNAP_TO_WINDOW = 0x01000000;

static Fl_Box snap_clear_(0, 0, 0, 0);
Fl_Widget *FL_SNAP_AREA_CLEAR = &snap_clear_;
Expand Down

0 comments on commit cef968e

Please sign in to comment.