Increase size of frame left/right buttons.

This commit is contained in:
Bartosz Taudul 2019-02-27 02:26:43 +01:00
parent d08ea6e2bd
commit e20e7caab0

View File

@ -801,7 +801,7 @@ 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();
#endif
@ -820,7 +820,7 @@ 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();
#endif