From b68423fc1a3fdd8cb8ee517e1f09fbe6325f809b Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 6 Aug 2020 15:21:18 +0200 Subject: [PATCH] Fix copy pasta. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 5e586a42..e7a2f35f 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -14748,7 +14748,7 @@ void View::DrawRangeEntry( Range& range, const char* label, uint32_t color, cons if( id != 1 ) { 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; } } }