DayZ 1.29
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ ButtonSetText() [7/7]

void UIScriptedMenu::ButtonSetText ( Widget w,
string text )
inlineprotected

См. определение в файле ServerBrowserMenuNew.c строка 848

849 {
850 if (!w)
851 return;
852
853 TextWidget label = TextWidget.Cast(w.FindWidget(w.GetName() + "_label"));
854
855 if (label)
856 {
857 label.SetText(text);
858 }
859
860 }