summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/handlers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/handlers.c b/sway/handlers.c
index 75adf7dd..344edd07 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -319,7 +319,7 @@ static bool handle_key(wlc_handle view, uint32_t time, const struct wlc_modifier
319 sway_log(L_DEBUG, "modifier %x: state %d: key %d, sym: %d", 319 sway_log(L_DEBUG, "modifier %x: state %d: key %d, sym: %d",
320 modifiers->mods, state, key, sym); 320 modifiers->mods, state, key, sym);
321 321
322 if ((modifiers->mods & config->floating_mod) && (dragging || resizing)) { 322 if (state == WLC_KEY_STATE_PRESSED && (dragging || resizing)) {
323 reset_floating(get_focused_view(&root_container)); 323 reset_floating(get_focused_view(&root_container));
324 } 324 }
325 325