1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Add icons to compare menu.

This commit is contained in:
Bartosz Taudul 2018-08-17 23:54:40 +02:00
parent 4c228fe862
commit b613a60c88

View File

@ -5070,7 +5070,11 @@ void View::DrawCompare()
if( !m_compare.second )
{
ImGui::TextWrapped( "Please load a second trace to compare results." );
#ifdef TRACY_EXTENDED_FONT
if( ImGui::Button( ICON_FA_FOLDER_OPEN " Open second trace" ) && !m_compare.loadThread.joinable() )
#else
if( ImGui::Button( "Open second trace" ) && !m_compare.loadThread.joinable() )
#endif
{
nfdchar_t* fn;
auto res = NFD_OpenDialog( "tracy", nullptr, &fn );
@ -5121,7 +5125,11 @@ void View::DrawCompare()
ImGui::SameLine();
ImGui::Text( "%s", m_compare.second->GetCaptureName().c_str() );
ImGui::SameLine();
#ifdef TRACY_EXTENDED_FONT
if( ImGui::SmallButton( ICON_FA_TRASH_ALT " Unload" ) )
#else
if( ImGui::SmallButton( "Unload" ) )
#endif
{
m_compare.Reset();
m_compare.second.reset();
@ -5132,10 +5140,18 @@ void View::DrawCompare()
ImGui::InputText( "", m_compare.pattern, 1024 );
ImGui::SameLine();
#ifdef TRACY_EXTENDED_FONT
const bool findClicked = ImGui::Button( ICON_FA_SEARCH " Find" );
#else
const bool findClicked = ImGui::Button( "Find" );
#endif
ImGui::SameLine();
#ifdef TRACY_EXTENDED_FONT
if( ImGui::Button( ICON_FA_BAN " Clear" ) )
#else
if( ImGui::Button( "Clear" ) )
#endif
{
m_compare.Reset();
}