From cef968e8a0bec755e7cd7f67556570ebec09f85b Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Thu, 21 Nov 2024 09:41:11 +0100 Subject: FLUID: avoiding integer overflow warning. --- fluid/autodoc.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fluid') diff --git a/fluid/autodoc.cxx b/fluid/autodoc.cxx index a47cdf19a..c656cbb78 100644 --- a/fluid/autodoc.cxx +++ b/fluid/autodoc.cxx @@ -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_; -- cgit v1.2.3