diff --git a/Source/ZMMO/Game/UI/FrontEnd/UIBootScreen_Base.cpp b/Source/ZMMO/Game/UI/FrontEnd/UIBootScreen_Base.cpp index ecf0d63..bbd44c8 100644 --- a/Source/ZMMO/Game/UI/FrontEnd/UIBootScreen_Base.cpp +++ b/Source/ZMMO/Game/UI/FrontEnd/UIBootScreen_Base.cpp @@ -123,6 +123,10 @@ void UUIBootScreen_Base::SetReady(bool bReady) { if (Btn_Start) { + // Enquanto conecta: OCULTO (Collapsed, sem ocupar layout). Conectado: + // visĂ­vel e interagĂ­vel. + Btn_Start->SetVisibility( + bReady ? ESlateVisibility::Visible : ESlateVisibility::Collapsed); Btn_Start->SetIsInteractionEnabled(bReady); } if (Spinner_Connect)