summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/handlers.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/handlers.c b/sway/handlers.c
index 98809958..57251307 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -423,6 +423,10 @@ static bool handle_pointer_motion(wlc_handle handle, uint32_t time, const struct
423 double dx = mouse_origin.x - prev_pos.x; 423 double dx = mouse_origin.x - prev_pos.x;
424 double dy = mouse_origin.y - prev_pos.y; 424 double dy = mouse_origin.y - prev_pos.y;
425 425
426 if (view != pointer_state.tiling.init_view) {
427 valid = false;
428 }
429
426 if ((dx < 0 || mouse_origin.x < pointer_state.tiling.lock_pos.x) && pointer_state.lock.temp_left) { 430 if ((dx < 0 || mouse_origin.x < pointer_state.tiling.lock_pos.x) && pointer_state.lock.temp_left) {
427 changed_tiling = true; 431 changed_tiling = true;
428 valid = false; 432 valid = false;