diff options
author | taiyu <[email protected]> | 2015-08-26 21:25:57 -0700 |
---|---|---|
committer | taiyu <[email protected]> | 2015-08-26 21:25:57 -0700 |
commit | d11533595133685d15fd6cdbf9f1611be5e8e2f3 (patch) | |
tree | eb8890eb711a55a58e3855c6d9328e3b1dd09063 /sway/handlers.c | |
parent | ef31ee5cf6aabfdf4730ac64c8b004be238df1a8 (diff) |
move workspace from dead output to other output
Diffstat (limited to 'sway/handlers.c')
-rw-r--r-- | sway/handlers.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sway/handlers.c b/sway/handlers.c index 93b124bd..2223a98c 100644 --- a/sway/handlers.c +++ b/sway/handlers.c @@ -424,8 +424,7 @@ static bool handle_pointer_button(wlc_handle view, uint32_t time, const struct w } // set pointer mode - pointer_mode_set(button, - (modifiers->mods & config->floating_mod) == config->floating_mod); + pointer_mode_set(button, !(modifiers->mods ^ config->floating_mod)); // Return if mode has been set if (pointer_state.mode) { |