Use note sticky icon for add annotation button.

This commit is contained in:
Bartosz Taudul
2026-06-25 15:25:25 +02:00
parent 3e5310cac6
commit a03e5e8968
2 changed files with 2 additions and 2 deletions

View File

@@ -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}

View File

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