From e393ade59d21c307594523779bca773a980e4129 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 7 Sep 2024 18:00:59 +0200 Subject: [PATCH] Shorten menu bar button names. --- profiler/src/profiler/TracyView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profiler/src/profiler/TracyView.cpp b/profiler/src/profiler/TracyView.cpp index bdeb7d72..d12527ac 100644 --- a/profiler/src/profiler/TracyView.cpp +++ b/profiler/src/profiler/TracyView.cpp @@ -872,11 +872,11 @@ bool View::DrawImpl() ImGui::PopStyleColor( 3 ); } ImGui::SameLine(); - ToggleButton( ICON_FA_GEAR " Options", m_showOptions ); + ToggleButton( ICON_FA_GEAR, m_showOptions ); ImGui::SameLine(); ToggleButton( ICON_FA_TAGS " Messages", m_showMessages ); ImGui::SameLine(); - ToggleButton( ICON_FA_MAGNIFYING_GLASS " Find zone", m_findZone.show ); + ToggleButton( ICON_FA_MAGNIFYING_GLASS " Find", m_findZone.show ); ImGui::SameLine(); ToggleButton( ICON_FA_ARROW_UP_WIDE_SHORT " Statistics", m_showStatistics ); ImGui::SameLine();