diff --git a/server/TracyView.cpp b/server/TracyView.cpp index a4db195f..08bb160c 100755 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -35,6 +35,9 @@ View::View( const char* addr ) assert( s_instance == nullptr ); s_instance = this; + ImGuiStyle& style = ImGui::GetStyle(); + style.FrameRounding = 2.f; + m_thread = std::thread( [this] { Worker(); } ); SetThreadName( m_thread, "Tracy View" ); }