diff --git a/manual/tracy.tex b/manual/tracy.tex index 5b15c363..2a18b4d0 100644 --- a/manual/tracy.tex +++ b/manual/tracy.tex @@ -1795,7 +1795,7 @@ The next three items show the \emph{\faEye{}~view time range}, the \emph{\faData \paragraph{Notification area} -The notification area is used to display informational notices, for example how long it took to load a trace from disk. A pulsating dot next to the \faTasks~icon indicates that some background tasks are being performed, that may need to be completed before full capabilities of the profiler are available. If a crash was captured during profiling (section~\ref{crashhandling}), a \emph{\faSkull{}~crash} icon will be displayed. The red \faTachometer*{}~icon indicates that queries are currently being backlogged, while the same yellow icon indicates that some queries are currently in-flight (see chapter~\ref{connectionpopup} for more information). +The notification area is used to display informational notices, for example how long it took to load a trace from disk. A pulsating dot next to the \faTasks~icon indicates that some background tasks are being performed, that may need to be completed before full capabilities of the profiler are available. If a crash was captured during profiling (section~\ref{crashhandling}), a \emph{\faSkull{}~crash} icon will be displayed. The red \faSatelliteDish{}~icon indicates that queries are currently being backlogged, while the same yellow icon indicates that some queries are currently in-flight (see chapter~\ref{connectionpopup} for more information). If drawing of timeline elements was disabled in the options menu (section~\ref{options}), the following orange icons will be used to remind the user about that fact. Click on the icons to enable drawing of the selected elements. Note that collapsed labels (section~\ref{zoneslocksplots}) are not taken into account here. diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 0375c404..cda778fe 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -748,7 +748,7 @@ void View::DrawNotificationArea() if( sqs != 0 ) { ImGui::SameLine(); - TextColoredUnformatted( ImVec4( 1, 0, 0, 1 ), ICON_FA_TACHOMETER_ALT ); + TextColoredUnformatted( ImVec4( 1, 0, 0, 1 ), ICON_FA_SATELLITE_DISH ); if( ImGui::IsItemHovered() ) { ImGui::BeginTooltip(); @@ -762,7 +762,7 @@ void View::DrawNotificationArea() if( sif != 0 ) { ImGui::SameLine(); - TextColoredUnformatted( ImVec4( 1, 0.75f, 0, 1 ), ICON_FA_TACHOMETER_ALT ); + TextColoredUnformatted( ImVec4( 1, 0.75f, 0, 1 ), ICON_FA_SATELLITE_DISH ); if( ImGui::IsItemHovered() ) { ImGui::BeginTooltip();