From 6ccb029097c82ec1847786d1823383e560ec9816 Mon Sep 17 00:00:00 2001 From: Alexis Date: Thu, 9 Aug 2018 21:14:40 +0200 Subject: [PATCH] fix: remove debug --- src/modules/workspaces.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/modules/workspaces.cpp b/src/modules/workspaces.cpp index 835689a..339f5af 100644 --- a/src/modules/workspaces.cpp +++ b/src/modules/workspaces.cpp @@ -69,7 +69,6 @@ void waybar::modules::Workspaces::_handle_idle(void *data, if (o->_thread) { delete o->_thread; o->_thread = nullptr; - std::cout << "IDLE" << std::endl; } } @@ -78,7 +77,6 @@ void waybar::modules::Workspaces::_handle_resume(void *data, auto o = reinterpret_cast(data); if (!o->_thread) { o->_updateThread(); - std::cout << "RESUME" << std::endl; } }