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

◆ ButtonSetText() [7/7]

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

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

837 {
838 if (!w)
839 return;
840
841 TextWidget label = TextWidget.Cast(w.FindWidget(w.GetName() + "_label"));
842
843 if (label)
844 {
845 label.SetText(text);
846 }
847
848 }