From a03e5e896858d8820e69cfdcbc53ea4b8db90b71 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 25 Jun 2026 15:25:25 +0200 Subject: [PATCH] Use note sticky icon for add annotation button. --- manual/tracy.tex | 2 +- profiler/src/profiler/TracyView_Annotations.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manual/tracy.tex b/manual/tracy.tex index 57846d1d..bac3edf2 100644 --- a/manual/tracy.tex +++ b/manual/tracy.tex @@ -5049,7 +5049,7 @@ This window lists all annotations marked on the timeline. Each annotation is pre \label{figannlist} \end{figure} -A new view-sized annotation can be added in this window by pressing the \emph{\faPlus{}~Add annotation} button. This effectively saves your current viewport for further reference. +A new view-sized annotation can be added in this window by pressing the \emph{\faNoteSticky{}~Add annotation} button. This effectively saves your current viewport for further reference. \subsection{Time range limits} \label{timerangelimits} diff --git a/profiler/src/profiler/TracyView_Annotations.cpp b/profiler/src/profiler/TracyView_Annotations.cpp index 6a583ffb..b0bad3c5 100644 --- a/profiler/src/profiler/TracyView_Annotations.cpp +++ b/profiler/src/profiler/TracyView_Annotations.cpp @@ -97,7 +97,7 @@ void View::DrawAnnotationList() ImGui::Begin( "Annotation list", &m_showAnnotationList ); if( ImGui::GetCurrentWindowRead()->SkipItems ) { ImGui::End(); return; } - if( ImGui::Button( ICON_FA_PLUS " Add annotation" ) ) + if( ImGui::Button( ICON_FA_NOTE_STICKY " Add annotation" ) ) { AddAnnotation( m_vd.zvStart, m_vd.zvEnd ); }