From fefa3b4693512ac54b9387bd79b901730486be3a Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 15 Oct 2019 01:49:36 +0200 Subject: [PATCH] Improve options UI. --- server/TracyView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 98f35fb1..24e5da46 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -6757,11 +6757,13 @@ void View::DrawOptions() #endif m_vd.drawContextSwitches = val; val = m_vd.darkenContextSwitches; + ImGui::Indent(); #ifdef TRACY_EXTENDED_FONT ImGui::Checkbox( ICON_FA_MOON " Darken inactive threads", &val ); #else ImGui::Checkbox( "Darken inactive threads", &val ); #endif + ImGui::Unindent(); m_vd.darkenContextSwitches = val; val = m_vd.drawCpuData; #ifdef TRACY_EXTENDED_FONT