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

◆ ShowAButton()

void UIScriptedMenu::ShowAButton ( bool show)
inlineprotected

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

317 {
318 RichTextWidget aIcon = RichTextWidget.Cast(layoutRoot.FindAnyWidget("ConnectIcon"));
319 TextWidget aText = TextWidget.Cast(layoutRoot.FindAnyWidget("ConnectText"));
320
321 if (aIcon)
322 {
323 aIcon.Show(show);
324 }
325
326 if (aText)
327 {
328 aText.Show(show);
329 }
330 }