KF2-Server-Extension/ServerExt/Classes/KFGUI_List_CD.uc
Forrest Keller 032bf1c114 Added a new scoreboard
Attempt to fix font scales being super huge on 1440p and higher resolutions
2017-10-25 17:21:13 -05:00

22 lines
401 B
Ucode

Class KFGUI_List_CD extends KFGUI_List;
function InitMenu()
{
Super(KFGUI_MultiComponent).InitMenu();
ScrollBar = KFGUI_ScrollBarV_CD(FindComponentID('Scrollbar'));
UpdateListVis();
}
defaultproperties
{
Components.Empty
Begin Object Class=KFGUI_ScrollBarV_CD Name=ListScroller
XPosition=0.96
YPosition=0
XSize=0.04
YSize=1
ID="Scrollbar"
End Object
Components.Add(ListScroller)
}