From 1e965edb54fbe178026f869a0772acae1be8c00e Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 9 Apr 2020 19:44:42 +0200 Subject: [PATCH] Don't separate inlines by default. --- server/TracyView.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.hpp b/server/TracyView.hpp index 04f88d72..50e8072b 100644 --- a/server/TracyView.hpp +++ b/server/TracyView.hpp @@ -361,7 +361,7 @@ private: bool m_showAllSymbols = false; int m_showCallstackFrameAddress = 0; bool m_showUnknownFrames = true; - bool m_statSeparateInlines = true; + bool m_statSeparateInlines = false; bool m_groupChildrenLocations = false; bool m_allocTimeRelativeToZone = true; bool m_ctxSwitchTimeRelativeToZone = true;