Add slight rounding to UI items.

This commit is contained in:
Bartosz Taudul 2017-09-20 00:46:30 +02:00
parent 1cb19a56eb
commit c402bd43b3

View File

@ -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" );
}