aboutsummaryrefslogtreecommitdiff
path: root/sway/handlers.c
diff options
context:
space:
mode:
authorLuminarys <kizunanohikari@gmail.com>2015-08-18 13:54:52 -0500
committerLuminarys <kizunanohikari@gmail.com>2015-08-18 13:54:52 -0500
commit7756f423c3449e58746dfc66517b389abee8b88f (patch)
tree51572f9329c240d6ddff10e99932b21f89ef278b /sway/handlers.c
parent01c6caced600921eecb00767347caef1b9a282a0 (diff)
Removed unnecessary debugging lines
Diffstat (limited to 'sway/handlers.c')
-rw-r--r--sway/handlers.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/sway/handlers.c b/sway/handlers.c
index b2ead56c..534b4e4f 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -60,9 +60,7 @@ swayc_t *container_under_pointer(void) {
i = len = lookup->floating->length;
bool got_floating = false;
while (--i > -1) {
- sway_log(L_DEBUG, "Checking index %d of floating items", i);
if (pointer_test(lookup->floating->items[i], &mouse_origin)) {
- sway_log(L_DEBUG, "Got hit for floatin on %d", i);
lookup = lookup->floating->items[i];
got_floating = true;
break;
@@ -75,7 +73,6 @@ swayc_t *container_under_pointer(void) {
// search children
len = lookup->children->length;
for (i = 0; i < len; ++i) {
- sway_log(L_DEBUG, "Checking index %d of standard children", i);
if (pointer_test(lookup->children->items[i], &mouse_origin)) {
lookup = lookup->children->items[i];
break;