diff --git a/core/src/gui/main_window.cpp b/core/src/gui/main_window.cpp index d91e4717..a6f06d6a 100644 --- a/core/src/gui/main_window.cpp +++ b/core/src/gui/main_window.cpp @@ -555,6 +555,10 @@ void drawWindow() { ImGui::Checkbox("Experimental zoom", &experimentalZoom); ImGui::Text("ImGui version: %s", ImGui::GetVersion()); + if (ImGui::Button("Test Bug")) { + spdlog::error("Will this make the software crash?"); + } + ImGui::Spacing(); }