From 1f94ab32df1cd6f98f94bf93e01f3427768faba6 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 3 Mar 2023 21:46:48 +0100 Subject: [PATCH] Exclude missing on-demand frames from on-load zoom. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 6b373985..40b42610 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -90,7 +90,7 @@ View::View( void(*cbMainThread)(std::function, bool), FileRead& f, ImFon InitMemory(); InitTextEditor( fixedWidth ); - m_vd.zvStart = 0; + m_vd.zvStart = m_worker.GetFirstTime(); m_vd.zvEnd = m_worker.GetLastTime(); m_userData.StateShouldBePreserved(); m_userData.LoadState( m_vd );