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

◆ ShowAButton()

void UIScriptedMenu::ShowAButton ( bool show)
inlineprotected

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

327 {
328 RichTextWidget aIcon = RichTextWidget.Cast(layoutRoot.FindAnyWidget("ConnectIcon"));
329 TextWidget aText = TextWidget.Cast(layoutRoot.FindAnyWidget("ConnectText"));
330
331 if (aIcon)
332 {
333 aIcon.Show(show);
334 }
335
336 if (aText)
337 {
338 aText.Show(show);
339 }
340 }