From cf981597c00dc9a566d642ba13d230186b4a9229 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 1 Feb 2025 10:51:54 -0500 Subject: [PATCH] Add cachedLogoImage property to fix the logo image not showing up I'm not sure if I accidentally removed this or what, but this fixes it. --- launcher/include/launchercore.h | 1 + 1 file changed, 1 insertion(+) diff --git a/launcher/include/launchercore.h b/launcher/include/launchercore.h index eaa9ea2..1d84aa8 100755 --- a/launcher/include/launchercore.h +++ b/launcher/include/launchercore.h @@ -68,6 +68,7 @@ class LauncherCore : public QObject Q_PROPERTY(Headline *headline READ headline NOTIFY newsChanged) Q_PROPERTY(Profile *currentProfile READ currentProfile WRITE setCurrentProfile NOTIFY currentProfileChanged) Q_PROPERTY(Profile *autoLoginProfile READ autoLoginProfile WRITE setAutoLoginProfile NOTIFY autoLoginProfileChanged) + Q_PROPERTY(QString cachedLogoImage READ cachedLogoImage NOTIFY cachedLogoImageChanged) #ifdef BUILD_SYNC Q_PROPERTY(SyncManager *syncManager READ syncManager CONSTANT)