From 7f689dadbea4f92099200d8872157cd55a602afa Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 24 Nov 2019 01:06:04 +0100 Subject: [PATCH] Use backspace icon for buttons erasing text entry. --- server/TracyView.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 5c32e4e1..561438ad 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -7652,7 +7652,7 @@ void View::DrawMessages() m_messageFilter.Draw( "Filter messages", 200 ); ImGui::SameLine(); #ifdef TRACY_EXTENDED_FONT - if( ImGui::Button( ICON_FA_BAN " Clear" ) ) + if( ImGui::Button( ICON_FA_BACKSPACE " Clear" ) ) #else if( ImGui::Button( "Clear" ) ) #endif @@ -10302,7 +10302,7 @@ void View::DrawStatistics() m_statisticsFilter.Draw( "Filter zones", 200 ); ImGui::SameLine(); #ifdef TRACY_EXTENDED_FONT - if( ImGui::Button( ICON_FA_BAN " Clear" ) ) + if( ImGui::Button( ICON_FA_BACKSPACE " Clear" ) ) #else if( ImGui::Button( "Clear" ) ) #endif @@ -12711,7 +12711,7 @@ void View::DrawMemory() } ImGui::SameLine(); #ifdef TRACY_EXTENDED_FONT - if( ImGui::Button( ICON_FA_BAN " Clear" ) ) + if( ImGui::Button( ICON_FA_BACKSPACE " Clear" ) ) #else if( ImGui::Button( "Clear" ) ) #endif