From 018f3e7b25be68072fbd4c4d712fce5a32e87bb1 Mon Sep 17 00:00:00 2001 From: Piotr Wasilewski Date: Sun, 8 Dec 2024 05:51:32 +0100 Subject: [PATCH] fix: turned off imgui demo window --- src/Gui/Gui.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/Gui.hpp b/src/Gui/Gui.hpp index 77801854..3096c360 100644 --- a/src/Gui/Gui.hpp +++ b/src/Gui/Gui.hpp @@ -36,7 +36,7 @@ class Gui ~Gui(); private: - static constexpr bool showDemoWindow = true; + static constexpr bool showDemoWindow = false; const std::map viewerStateMap{{DataHandlerBase::State::RUN, "RUNNING"}, {DataHandlerBase::State::STOP, "STOPPED"}};