diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 674fb341..5f317926 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -6243,7 +6243,10 @@ void View::DrawFindZone() { ImGui::Checkbox( "Log values", &m_findZone.logVal ); ImGui::SameLine(); - ImGui::Checkbox( "Log time", &m_findZone.logTime ); + if( ImGui::Checkbox( "Log time", &m_findZone.logTime ) ) + { + m_findZone.binCache.numBins = -1; + } ImGui::SameLine(); ImGui::Checkbox( "Cumulate time", &m_findZone.cumulateTime ); ImGui::SameLine();