From 854e7d1d74a70c5c823a34e1a19d760c68e70eb7 Mon Sep 17 00:00:00 2001 From: hippoz <10706925-hippoz@users.noreply.gitlab.com> Date: Wed, 19 Oct 2022 00:18:03 +0300 Subject: [PATCH] remove debug logging --- src/Widget.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Widget.cpp b/src/Widget.cpp index 6541310..1a02d5c 100644 --- a/src/Widget.cpp +++ b/src/Widget.cpp @@ -222,13 +222,10 @@ void Widget::handle_mouse_move_event(MouseMoveEvent &event) { if (m_is_focused && m_window) m_window->set_focused_widget(this); - std::cout << "update focus: " << update_focus_to << std::endl; - auto focus_update_event = FocusUpdateEvent(update_focus_to); on_focus_update(focus_update_event); if (m_style->update_background()) { - std::cout << "should repaint because of focus change" << std::endl; repaint(); } }