diff --git a/lucid/splash.py b/lucid/splash.py index 7ff6013..395871f 100644 --- a/lucid/splash.py +++ b/lucid/splash.py @@ -22,8 +22,11 @@ def __init__(self, *args, **kwargs): layout.addWidget(logo) self.status_display = QtWidgets.QLabel() + tout = typhos.utils.TyphosLoading.LOADING_TIMEOUT_MS + # No Timeout! + typhos.utils.TyphosLoading.LOADING_TIMEOUT_MS = -1 loading = typhos.utils.TyphosLoading(self) - loading._handle_timeout = lambda *args, **kwargs: None + typhos.utils.TyphosLoading.LOADING_TIMEOUT_MS = tout status_layout = QtWidgets.QHBoxLayout() status_layout.addWidget(self.status_display)