aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/cursor.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input/cursor.c')
-rw-r--r--sway/input/cursor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 762b8081..ba5e0400 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -724,7 +724,7 @@ void dispatch_cursor_button(struct sway_cursor *cursor,
724 uint32_t btn_move = config->floating_mod_inverse ? BTN_RIGHT : BTN_LEFT; 724 uint32_t btn_move = config->floating_mod_inverse ? BTN_RIGHT : BTN_LEFT;
725 if (button == btn_move && state == WLR_BUTTON_PRESSED && 725 if (button == btn_move && state == WLR_BUTTON_PRESSED &&
726 (mod_pressed || on_titlebar)) { 726 (mod_pressed || on_titlebar)) {
727 while (cont->parent->layout != L_FLOATING) { 727 while (cont->parent->type != C_WORKSPACE) {
728 cont = cont->parent; 728 cont = cont->parent;
729 } 729 }
730 seat_begin_move(seat, cont, button); 730 seat_begin_move(seat, cont, button);
@@ -746,7 +746,7 @@ void dispatch_cursor_button(struct sway_cursor *cursor,
746 BTN_LEFT : BTN_RIGHT; 746 BTN_LEFT : BTN_RIGHT;
747 if (mod_pressed && button == btn_resize) { 747 if (mod_pressed && button == btn_resize) {
748 struct sway_container *floater = cont; 748 struct sway_container *floater = cont;
749 while (floater->parent->layout != L_FLOATING) { 749 while (floater->parent->type != C_WORKSPACE) {
750 floater = floater->parent; 750 floater = floater->parent;
751 } 751 }
752 edge = 0; 752 edge = 0;