mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-20 15:08:19 +00:00
Add small margin to callvote label
This commit is contained in:
parent
b458890f08
commit
68508e1b81
|
@ -554,7 +554,9 @@ bool CMenus::RenderServerControlServer(CUIRect MainView)
|
|||
if(!Item.m_Visible)
|
||||
continue;
|
||||
|
||||
UI()->DoLabel(&Item.m_Rect, pOption->m_aDescription, 13.0f, TEXTALIGN_ML);
|
||||
CUIRect Label;
|
||||
Item.m_Rect.VMargin(2.0f, &Label);
|
||||
UI()->DoLabel(&Label, pOption->m_aDescription, 13.0f, TEXTALIGN_ML);
|
||||
}
|
||||
|
||||
s_CurVoteOption = s_ListBox.DoEnd();
|
||||
|
|
Loading…
Reference in a new issue