From 07a94de5e2d2eade32465e5b31cf456509e2aa07 Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Wed, 1 Oct 2025 10:43:19 -0400 Subject: [PATCH] Shell: more robust reload --- shell.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell.qml b/shell.qml index c15468e1..26d84837 100644 --- a/shell.qml +++ b/shell.qml @@ -60,14 +60,14 @@ ShellRoot { } Connections { - target: I18n + target: I18n ? I18n : null function onTranslationsLoaded() { i18nLoaded = true } } Connections { - target: Settings + target: Settings ? Settings : null function onSettingsLoaded() { settingsLoaded = true }