From d6fd252ce4f17a07778f536f67077bd56a7421b3 Mon Sep 17 00:00:00 2001 From: Terence Rokop Date: Sat, 26 Jun 2021 10:30:00 -0700 Subject: [PATCH] Add more spacing to pre-existing options --- server/TracyView.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 1c900ca4..954ad150 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -12322,10 +12322,14 @@ void View::DrawStatistics() if( hasSamples ) { + ImGui::Spacing(); + ImGui::SameLine(); ImGui::RadioButton( ICON_FA_EYE_DROPPER " Sampling", &m_statMode, 1 ); } else { + ImGui::Spacing(); + ImGui::SameLine(); ImGui::RadioButton( ICON_FA_PUZZLE_PIECE " Symbols", &m_statMode, 1 ); } ImGui::SameLine(); @@ -12532,14 +12536,24 @@ void View::DrawStatistics() AccumulationModeComboBox(); } ImGui::SameLine(); + ImGui::Spacing(); + ImGui::SameLine(); ImGui::Checkbox( ICON_FA_EYE_SLASH " Hide unknown", &m_statHideUnknown ); ImGui::SameLine(); + ImGui::Spacing(); + ImGui::SameLine(); ImGui::Checkbox( ICON_FA_PUZZLE_PIECE " Show all", &m_showAllSymbols ); ImGui::SameLine(); + ImGui::Spacing(); + ImGui::SameLine(); ImGui::Checkbox( ICON_FA_SITEMAP " Inlines", &m_statSeparateInlines ); ImGui::SameLine(); + ImGui::Spacing(); + ImGui::SameLine(); ImGui::Checkbox( ICON_FA_AT " Address", &m_statShowAddress ); ImGui::SameLine(); + ImGui::Spacing(); + ImGui::SameLine(); ImGui::TextUnformatted( "Location:" ); ImGui::SameLine(); const char* locationTable = "Entry\0Sample\0Smart\0";