diff options
author | rbuj <[email protected]> | 2022-01-28 21:07:41 +0100 |
---|---|---|
committer | Luke from DC <[email protected]> | 2022-02-13 21:51:59 +0000 |
commit | 936a0bdea9b651ad705552600779502dfec91127 (patch) | |
tree | 70186783e29abb2e0c7cc16d8d7ee3637208f2f8 /src/core/display.c | |
parent | 4f73014773f194331b441c6879fe7d8744d9d9b8 (diff) | |
download | marco-936a0bdea9b651ad705552600779502dfec91127.tar.bz2 marco-936a0bdea9b651ad705552600779502dfec91127.tar.xz |
Remove TRUE, FALSE from if statement
Diffstat (limited to 'src/core/display.c')
-rw-r--r-- | src/core/display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/display.c b/src/core/display.c index a4c22665..6af38087 100644 --- a/src/core/display.c +++ b/src/core/display.c @@ -3855,7 +3855,7 @@ meta_display_end_grab_op (MetaDisplay *display, * For raise on click mode, the window was raised at the * beginning of the grab_op. */ - if (display->grab_threshold_movement_reached == FALSE) + if (!display->grab_threshold_movement_reached) meta_window_raise (display->grab_window); } |