From e4e3d75eb806d3f54ebde4e064c509aae0afe983 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 6 Jun 2026 10:56:25 +0200 Subject: [PATCH] Add PDF link to built-in manual viewer. --- profiler/src/profiler/TracyView_Manual.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/profiler/src/profiler/TracyView_Manual.cpp b/profiler/src/profiler/TracyView_Manual.cpp index b3ad6666..a2671b2f 100644 --- a/profiler/src/profiler/TracyView_Manual.cpp +++ b/profiler/src/profiler/TracyView_Manual.cpp @@ -25,6 +25,8 @@ void View::DrawManual() ImGui::PopStyleColor(); ImGui::SameLine(); TextDisabledUnformatted( "This user manual is missing features. See the PDF file for the proper version." ); + ImGui::SameLine(); + if( ImGui::Button( ICON_FA_BOOK " PDF Manual" ) ) OpenWebpage( "https://github.com/wolfpld/tracy/releases" ); ImGui::Separator(); ImGui::BeginChild( "##usermanual" );