From f3a6f0117f5fe979cb1632bb957c1f45b217e787 Mon Sep 17 00:00:00 2001 From: FireFox101889 <87771170+FireFox101889@users.noreply.github.com> Date: Mon, 5 Jun 2023 15:33:04 -0400 Subject: [PATCH] fix(gui): Use correct imgui style for hotkey background (#1371) --- src/widgets/imgui_hotkey.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/imgui_hotkey.hpp b/src/widgets/imgui_hotkey.hpp index ca0cbd2c..e4523fce 100644 --- a/src/widgets/imgui_hotkey.hpp +++ b/src/widgets/imgui_hotkey.hpp @@ -112,7 +112,7 @@ namespace ImGui ImGui::RenderFrame(frame_bb.Min, frame_bb.Max, - ImGui::GetColorU32(ImVec4(0.20f, 0.25f, 0.30f, 1.0f)), + (ImColor)style.Colors[ImGuiCol_FrameBg], true, style.FrameRounding);