Shorten menu bar button names.

This commit is contained in:
Bartosz Taudul 2024-09-07 18:00:59 +02:00
parent 8e3d250654
commit e393ade59d
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -872,11 +872,11 @@ bool View::DrawImpl()
ImGui::PopStyleColor( 3 ); ImGui::PopStyleColor( 3 );
} }
ImGui::SameLine(); ImGui::SameLine();
ToggleButton( ICON_FA_GEAR " Options", m_showOptions ); ToggleButton( ICON_FA_GEAR, m_showOptions );
ImGui::SameLine(); ImGui::SameLine();
ToggleButton( ICON_FA_TAGS " Messages", m_showMessages ); ToggleButton( ICON_FA_TAGS " Messages", m_showMessages );
ImGui::SameLine(); ImGui::SameLine();
ToggleButton( ICON_FA_MAGNIFYING_GLASS " Find zone", m_findZone.show ); ToggleButton( ICON_FA_MAGNIFYING_GLASS " Find", m_findZone.show );
ImGui::SameLine(); ImGui::SameLine();
ToggleButton( ICON_FA_ARROW_UP_WIDE_SHORT " Statistics", m_showStatistics ); ToggleButton( ICON_FA_ARROW_UP_WIDE_SHORT " Statistics", m_showStatistics );
ImGui::SameLine(); ImGui::SameLine();