From 0aebf614db50f393c253ed572fea3a06c6b56984 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 17 Aug 2018 23:24:25 +0200 Subject: [PATCH] Add icons to pause/resume button. --- server/TracyView.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 229812cf..4173d471 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -486,8 +486,13 @@ bool View::Draw() } static const char* MainWindowButtons[] = { +#ifdef TRACY_EXTENDED_FONT + ICON_FA_PLAY " Resume", + ICON_FA_PAUSE " Pause" +#else "Resume", "Pause" +#endif }; enum { MainWindowButtonsCount = sizeof( MainWindowButtons ) / sizeof( *MainWindowButtons ) };