aboutsummaryrefslogtreecommitdiffstats
path: root/src/window-xlib.h
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2017-02-11 17:05:54 -0500
committerJesse Luehrs <doy@tozt.net>2017-02-11 17:05:54 -0500
commitce7ea957602bc5295de08e13ba0fb7475f909b33 (patch)
tree8debfa9885c15d7a4977e5a03c6beb2a4ba978bb /src/window-xlib.h
parent1bacad0c4ae2cfac6bca888569e73bc18bf9268a (diff)
downloadrunes-ce7ea957602bc5295de08e13ba0fb7475f909b33.tar.gz
runes-ce7ea957602bc5295de08e13ba0fb7475f909b33.zip
fix moving the mouse after making a selection
previously it was always moving the existing selection around even if the mouse button wasn't held down
Diffstat (limited to 'src/window-xlib.h')
-rw-r--r--src/window-xlib.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/window-xlib.h b/src/window-xlib.h
index 46ed900..c7bca22 100644
--- a/src/window-xlib.h
+++ b/src/window-xlib.h
@@ -20,6 +20,7 @@ struct runes_window {
unsigned int owns_selection: 1;
unsigned int visual_bell_is_ringing: 1;
unsigned int delaying: 1;
+ unsigned int mouse_down: 1;
};
RunesWindow *runes_window_new(RunesWindowBackend *wb);