From 3e622cda6b219ff38b4aa56357568531cdd4b16a Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 8 Aug 2018 18:40:20 +0200 Subject: [PATCH] Decapitalize "zone" in "Find Zone". --- server/TracyView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 17a4d85b..30429f67 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -414,7 +414,7 @@ bool View::DrawImpl() ImGui::SameLine(); if( ImGui::Button( "Messages" ) ) m_showMessages = true; ImGui::SameLine(); - if( ImGui::Button( "Find Zone" ) ) m_findZone.show = true; + if( ImGui::Button( "Find zone" ) ) m_findZone.show = true; ImGui::SameLine(); if( ImGui::Button( "Statistics" ) ) m_showStatistics = true; ImGui::SameLine(); @@ -3979,7 +3979,7 @@ uint64_t View::GetSelectionTarget( const Worker::ZoneThreadData& ev, FindZone::G void View::DrawFindZone() { - ImGui::Begin( "Find Zone", &m_findZone.show ); + ImGui::Begin( "Find zone", &m_findZone.show ); #ifdef TRACY_NO_STATISTICS ImGui::TextWrapped( "Collection of statistical data is disabled in this build." ); ImGui::TextWrapped( "Rebuild without the TRACY_NO_STATISTICS macro to enable zone search." );