From 5153ff0123c37138cf4a6bdb211bc45f7fc171d6 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Tue, 30 Jul 2024 21:07:43 -0400 Subject: [PATCH] homescreens/folio: Fix incorrect folio reference --- .../folio/package/contents/ui/settings/SettingsWindow.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containments/homescreens/folio/package/contents/ui/settings/SettingsWindow.qml b/containments/homescreens/folio/package/contents/ui/settings/SettingsWindow.qml index ee6e54ff..09cb41d3 100644 --- a/containments/homescreens/folio/package/contents/ui/settings/SettingsWindow.qml +++ b/containments/homescreens/folio/package/contents/ui/settings/SettingsWindow.qml @@ -105,8 +105,8 @@ Window { name: i18n('Application') contentItem: DelegateAppIcon { - height: folio.FolioSettings.delegateIconSize - width: folio.FolioSettings.delegateIconSize + height: root.folio.FolioSettings.delegateIconSize + width: root.folio.FolioSettings.delegateIconSize source: 'applications-system' } }