From 9aa304e3e76e78475f59a4000b559ccfbb1ae0ac Mon Sep 17 00:00:00 2001 From: Dan Ballard Date: Thu, 28 May 2020 17:42:01 -0700 Subject: [PATCH] allow theme to be changed via gcd --- theme/Theme.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/theme/Theme.qml b/theme/Theme.qml index f3f7e23..e122e9e 100644 --- a/theme/Theme.qml +++ b/theme/Theme.qml @@ -58,6 +58,5 @@ Item { property ThemeType dark: CwtchDark{} property ThemeType light: CwtchLight{} - property ThemeType theme: dark - + property ThemeType theme: gcd.theme == "dark" ? dark : light }