mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-23 14:54:34 +00:00
Decapitalize "zone" in "Find Zone".
This commit is contained in:
parent
9fc8cb9d8b
commit
3e622cda6b
@ -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." );
|
||||||
|
Loading…
Reference in New Issue
Block a user