Decapitalize "zone" in "Find Zone".

This commit is contained in:
Bartosz Taudul 2018-08-08 18:40:20 +02:00
parent 9fc8cb9d8b
commit 3e622cda6b

View File

@ -414,7 +414,7 @@ bool View::DrawImpl()
ImGui::SameLine(); ImGui::SameLine();
if( ImGui::Button( "Messages" ) ) m_showMessages = true; if( ImGui::Button( "Messages" ) ) m_showMessages = true;
ImGui::SameLine(); ImGui::SameLine();
if( ImGui::Button( "Find Zone" ) ) m_findZone.show = true; if( ImGui::Button( "Find zone" ) ) m_findZone.show = true;
ImGui::SameLine(); ImGui::SameLine();
if( ImGui::Button( "Statistics" ) ) m_showStatistics = true; if( ImGui::Button( "Statistics" ) ) m_showStatistics = true;
ImGui::SameLine(); ImGui::SameLine();
@ -3979,7 +3979,7 @@ uint64_t View::GetSelectionTarget( const Worker::ZoneThreadData& ev, FindZone::G
void View::DrawFindZone() void View::DrawFindZone()
{ {
ImGui::Begin( "Find Zone", &m_findZone.show ); ImGui::Begin( "Find zone", &m_findZone.show );
#ifdef TRACY_NO_STATISTICS #ifdef TRACY_NO_STATISTICS
ImGui::TextWrapped( "Collection of statistical data is disabled in this build." ); ImGui::TextWrapped( "Collection of statistical data is disabled in this build." );
ImGui::TextWrapped( "Rebuild without the TRACY_NO_STATISTICS macro to enable zone search." ); ImGui::TextWrapped( "Rebuild without the TRACY_NO_STATISTICS macro to enable zone search." );