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

◆ ShowAButton()

void UIScriptedMenu::ShowAButton ( bool show)
inlineprotected

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

309 {
310 RichTextWidget aIcon = RichTextWidget.Cast(layoutRoot.FindAnyWidget("ConnectIcon"));
311 TextWidget aText = TextWidget.Cast(layoutRoot.FindAnyWidget("ConnectText"));
312
313 if (aIcon)
314 {
315 aIcon.Show(show);
316 }
317
318 if (aText)
319 {
320 aText.Show(show);
321 }
322 }