Add user manual button.

This commit is contained in:
Bartosz Taudul 2018-08-04 01:15:56 +02:00
parent 3d7040d30f
commit a4e877a89f

View File

@ -127,6 +127,11 @@ int main( int argc, char** argv )
ImGui::Begin( "Tracy server", nullptr, ImGuiWindowFlags_AlwaysAutoResize );
ImGui::Text( "Tracy %i.%i.%i", tracy::Version::Major, tracy::Version::Minor, tracy::Version::Patch );
ImGui::SameLine();
if( ImGui::SmallButton( "User manual" ) )
{
OpenWebpage( "https://bitbucket.org/wolfpld/tracy/downloads/tracy.pdf" );
}
ImGui::SameLine();
if( ImGui::SmallButton( "Homepage" ) )
{
OpenWebpage( "https://bitbucket.org/wolfpld/tracy" );