diff options
| author | Matthias Melcher <github@matthiasm.com> | 2024-11-21 09:41:11 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2024-11-21 09:41:17 +0100 |
| commit | cef968e8a0bec755e7cd7f67556570ebec09f85b (patch) | |
| tree | 3aea4f5b4b176895f1e0a58cf9896eda7b20331f | |
| parent | d767b8ceb8a360442380b6f58aa7e91e498977c0 (diff) | |
FLUID: avoiding integer overflow warning.
| -rw-r--r-- | fluid/autodoc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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_; |
