1
0
mirror of https://github.com/wolfpld/tracy synced 2025-05-03 06:03:51 +00:00

Fix copy pasta.

This commit is contained in:
Bartosz Taudul 2020-08-06 15:21:18 +02:00
parent 71440cc6ee
commit b68423fc1a

View File

@ -14748,7 +14748,7 @@ void View::DrawRangeEntry( Range& range, const char* label, uint32_t color, cons
if( id != 1 ) if( id != 1 )
{ {
ImGui::SameLine(); ImGui::SameLine();
if( SmallButtonDisablable( ICON_FA_SORT_AMOUNT_UP " Copy from statistics", m_statRange.min == 0 && m_statRange.max == 0 ) ) range = m_findZone.range; if( SmallButtonDisablable( ICON_FA_SORT_AMOUNT_UP " Copy from statistics", m_statRange.min == 0 && m_statRange.max == 0 ) ) range = m_statRange;
} }
} }
} }