Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-08-17 13:07:38 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-08-17 13:07:38 +0300
commit4bcb59bbe6c637952e976028e44a2210519d99ae (patch)
treeb26c6af699032fac235694688ade5d058ca40f8d /server/TracyView_FindZone.cpp
parentef35c01e14c73c44c74861ac3e882a1adcfd5454 (diff)
Update font awesome and migrate to v6 headers.
Diffstat (limited to 'server/TracyView_FindZone.cpp')
-rw-r--r--server/TracyView_FindZone.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/TracyView_FindZone.cpp b/server/TracyView_FindZone.cpp
index 411c79fa..d8314041 100644
--- a/server/TracyView_FindZone.cpp
+++ b/server/TracyView_FindZone.cpp
@@ -280,7 +280,7 @@ void View::DrawFindZone()
findClicked |= ImGui::InputTextWithHint( "###findzone", "Enter zone name to search for", m_findZone.pattern, 1024, ImGuiInputTextFlags_EnterReturnsTrue );
ImGui::PopItemWidth();
- findClicked |= ImGui::Button( ICON_FA_SEARCH " Find" );
+ findClicked |= ImGui::Button( ICON_FA_MAGNIFYING_GLASS " Find" );
ImGui::SameLine();
if( ImGui::Button( ICON_FA_BAN " Clear" ) )
@@ -303,7 +303,7 @@ void View::DrawFindZone()
if( m_findZone.range.active )
{
ImGui::SameLine();
- TextColoredUnformatted( 0xFF00FFFF, ICON_FA_EXCLAMATION_TRIANGLE );
+ TextColoredUnformatted( 0xFF00FFFF, ICON_FA_TRIANGLE_EXCLAMATION );
ImGui::SameLine();
ToggleButton( ICON_FA_RULER " Limits", m_showRanges );
}
@@ -1357,7 +1357,7 @@ void View::DrawFindZone()
if( m_findZone.selGroup != m_findZone.Unselected )
{
ImGui::SameLine();
- if( ImGui::SmallButton( ICON_FA_BACKSPACE " Clear" ) )
+ if( ImGui::SmallButton( ICON_FA_DELETE_LEFT " Clear" ) )
{
m_findZone.selGroup = m_findZone.Unselected;
m_findZone.ResetSelection();