1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Cosmetics.

This commit is contained in:
Bartosz Taudul 2018-03-24 14:42:48 +01:00
parent 3a49e9a4be
commit 225423bd21
2 changed files with 2 additions and 2 deletions

View File

@ -251,7 +251,7 @@ const char* View::ShortenNamespace( const char* name ) const
void View::DrawHelpMarker( const char* desc ) const
{
ImGui::TextDisabled( "(?)" );
if ( ImGui::IsItemHovered() )
if( ImGui::IsItemHovered() )
{
ImGui::BeginTooltip();
ImGui::PushTextWrapPos( 450.0f );

View File

@ -248,7 +248,7 @@ Worker::Worker( FileRead& f )
Worker::~Worker()
{
Shutdown();
if ( m_thread.joinable() )
if( m_thread.joinable() )
{
m_thread.join();
}