From 1032eb95d24e664f28f382ce17ef83eb33c3dbd5 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 19 Dec 2019 17:45:55 +0100 Subject: [PATCH] Set sane default window size for CPU data. --- server/TracyView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 7bc31d65..9b9cd0c8 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -11985,6 +11985,7 @@ void View::DrawCpuDataWindow() it->second.data.migrations += v.second.migrations; } + ImGui::SetNextWindowSize( ImVec2( 700, 800 ), ImGuiCond_FirstUseEver ); ImGui::Begin( "CPU data", &m_showCpuDataWindow ); TextFocused( "Tracked threads:", RealToString( ctd.size(), true ) ); ImGui::SameLine();