From 84a52c5d627addcc95253e44aaf260ec719eb293 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 11 Jun 2019 02:12:34 +0200 Subject: [PATCH] Add join discord button. --- profiler/src/main.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp index e7925dda..beb7f512 100644 --- a/profiler/src/main.cpp +++ b/profiler/src/main.cpp @@ -275,16 +275,21 @@ int main( int argc, char** argv ) tracy::TextCentered( buf ); ImGui::PopFont(); ImGui::Spacing(); - if( ImGui::Button( ICON_FA_BOOK " User manual" ) ) + if( ImGui::Button( ICON_FA_BOOK " Manual" ) ) { OpenWebpage( "https://bitbucket.org/wolfpld/tracy/downloads/tracy.pdf" ); } ImGui::SameLine(); - if( ImGui::Button( ICON_FA_GLOBE_AMERICAS " Homepage" ) ) + if( ImGui::Button( ICON_FA_GLOBE_AMERICAS " Web" ) ) { OpenWebpage( "https://bitbucket.org/wolfpld/tracy" ); } ImGui::SameLine(); + if( ImGui::Button( ICON_FA_COMMENT " Chat" ) ) + { + OpenWebpage( "https://discord.gg/pk78auc" ); + } + ImGui::SameLine(); if( ImGui::Button( ICON_FA_VIDEO " Tutorial" ) ) { ImGui::OpenPopup( "tutorial" );