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

◆ ButtonSetText() [7/7]

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

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

829 {
830 if (!w)
831 return;
832
833 TextWidget label = TextWidget.Cast(w.FindWidget(w.GetName() + "_label"));
834
835 if (label)
836 {
837 label.SetText(text);
838 }
839
840 }