From 92284b65e7210945214ae28731f0b46d9ea63d48 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 17 Aug 2018 18:36:06 +0200 Subject: [PATCH] Use save file icon. --- profiler/src/main.cpp | 1 + server/TracyView.cpp | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp index b0eeda23..30397760 100644 --- a/profiler/src/main.cpp +++ b/profiler/src/main.cpp @@ -107,6 +107,7 @@ int main( int argc, char** argv ) 0xF07C, 0xF07C, // folder open 0xF1EB, 0xF1EB, // wifi 0xF011, 0xF011, // power off + 0xF56F, 0xF56F, // file-import 0 }; ImFontConfig configMerge; diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 861d1028..2db2f742 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -703,7 +703,11 @@ void View::DrawConnection() } } +#ifdef TRACY_EXTENDED_FONT + if( ImGui::Button( "\xef\x95\xaf Save trace" ) ) +#else if( ImGui::Button( "Save trace" ) ) +#endif { #ifdef TRACY_FILESELECTOR nfdchar_t* fn;