From f7a6dd7ce95ff5c5cefcd524d4261f78a887f0a9 Mon Sep 17 00:00:00 2001 From: Luminarys Date: Fri, 21 Aug 2015 15:36:37 -0500 Subject: [PATCH] Minor fix to resizing with mouse --- sway/handlers.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sway/handlers.c b/sway/handlers.c index 7188092a3..4f28dea9c 100644 --- a/sway/handlers.c +++ b/sway/handlers.c @@ -425,6 +425,10 @@ static bool handle_pointer_motion(wlc_handle handle, uint32_t time, const struct double dx = mouse_origin.x - prev_pos.x; double dy = mouse_origin.y - prev_pos.y; + if (view != pointer_state.tiling.init_view) { + valid = false; + } + if ((dx < 0 || mouse_origin.x < pointer_state.tiling.lock_pos.x) && pointer_state.lock.temp_left) { changed_tiling = true; valid = false;