From 142f94cc33d69fa4eacfc02a31080aae60f3939a Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 13 Jan 2018 14:08:14 +0100 Subject: [PATCH] Small style adjustments. --- standalone/src/main.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/standalone/src/main.cpp b/standalone/src/main.cpp index e715ea12..66943ead 100644 --- a/standalone/src/main.cpp +++ b/standalone/src/main.cpp @@ -56,6 +56,11 @@ int main(int, char**) } ImGui::StyleColorsDark(); + auto& style = ImGui::GetStyle(); + style.WindowBorderSize = 1.f; + style.FrameBorderSize = 1.f; + style.Colors[ImGuiCol_WindowBg] = ImVec4( 0.11f, 0.11f, 0.08f, 0.94f ); + style.Colors[ImGuiCol_ScrollbarBg] = ImVec4( 1, 1, 1, 0.03f ); ImVec4 clear_color = ImColor(114, 144, 154);