From c846e0f400d82115bc66bf15253ee1d19116d397 Mon Sep 17 00:00:00 2001 From: Ryzerth Date: Mon, 8 Feb 2021 20:08:59 +0100 Subject: [PATCH] Added spdlog test button --- core/src/gui/main_window.cpp | 4 ++++ 1 file changed, 4 insertions(+) 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(); }