From 219a4f4ba668c94d2304d6736d6489bfb1e11dc3 Mon Sep 17 00:00:00 2001 From: Valentin Verdier Date: Mon, 13 Jul 2020 00:48:50 +0200 Subject: [PATCH] Deleting call to XWindow::processEvents() --- src/main.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 9112201..0c9f783 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -14,7 +14,6 @@ int main(int argc, char** argv) { std::vector windows = display.getWindows(); for(Kronos::XWindow& w : windows) { - w.processEvents(); std::cout << "=> " << w.getName() << std::endl; std::cout << " - " << w.getWidth() << "x" << w.getHeight() << std::endl; }