summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-08-19 19:55:40 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-08-19 19:55:40 -0400
commit2dabca03f404b4c5f0275b39dc6d103a26d43663 (patch)
treec7898b48437dbadd21c41b3db2acbefa899ceae4
parentMerge pull request #92 from z33ky/master (diff)
downloadsway-2dabca03f404b4c5f0275b39dc6d103a26d43663.tar.gz
sway-2dabca03f404b4c5f0275b39dc6d103a26d43663.tar.zst
sway-2dabca03f404b4c5f0275b39dc6d103a26d43663.zip
Remove logging of all key presess
This makes the logs a bit too hard to read
-rw-r--r--sway/handlers.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/sway/handlers.c b/sway/handlers.c
index 0bb181cc..6889fb22 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -322,9 +322,6 @@ static bool handle_key(wlc_handle view, uint32_t time, const struct wlc_modifier
322 } 322 }
323 bool cmd_success = false; 323 bool cmd_success = false;
324 324
325 sway_log(L_DEBUG, "modifier %x: state %d: key %d, sym: %d",
326 modifiers->mods, state, key, sym);
327
328 //Revert floating container back to original position on keypress 325 //Revert floating container back to original position on keypress
329 if (state == WLC_KEY_STATE_PRESSED && (dragging || resizing)) { 326 if (state == WLC_KEY_STATE_PRESSED && (dragging || resizing)) {
330 reset_floating(get_focused_view(&root_container)); 327 reset_floating(get_focused_view(&root_container));