From e20e7caab0e1f51fa725aa27f289323db8317ab2 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 27 Feb 2019 02:26:43 +0100 Subject: [PATCH] Increase size of frame left/right buttons. --- server/TracyView.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index b905ac0b..173f691f 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -801,9 +801,9 @@ bool View::DrawImpl() #endif ImGui::SameLine(); #ifdef TRACY_EXTENDED_FONT - if( ImGui::SmallButton( ICON_FA_CARET_LEFT ) ) ZoomToPrevFrame(); + if( ImGui::SmallButton( " " ICON_FA_CARET_LEFT " " ) ) ZoomToPrevFrame(); #else - if( ImGui::SmallButton( "<" ) ) ZoomToPrevFrame(); + if( ImGui::SmallButton( " < " ) ) ZoomToPrevFrame(); #endif ImGui::SameLine(); { @@ -820,9 +820,9 @@ bool View::DrawImpl() } ImGui::SameLine(); #ifdef TRACY_EXTENDED_FONT - if( ImGui::SmallButton( ICON_FA_CARET_RIGHT ) ) ZoomToNextFrame(); + if( ImGui::SmallButton( " " ICON_FA_CARET_RIGHT " " ) ) ZoomToNextFrame(); #else - if( ImGui::SmallButton( ">" ) ) ZoomToNextFrame(); + if( ImGui::SmallButton( " > " ) ) ZoomToNextFrame(); #endif ImGui::SameLine(); if( ImGui::BeginCombo( "##frameCombo", nullptr, ImGuiComboFlags_NoPreview ) )