From 006da1fb16ebcaca798b627b5e256c570ec22391 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 5 Nov 2023 15:13:40 -0500 Subject: [PATCH] Show color scheme option on Android This works on Android now, and the rest of the code changed to enable it anyway. --- src/qml/AppearanceSettingsPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/AppearanceSettingsPage.qml b/src/qml/AppearanceSettingsPage.qml index 3f29d3beb..b3758b045 100644 --- a/src/qml/AppearanceSettingsPage.qml +++ b/src/qml/AppearanceSettingsPage.qml @@ -212,7 +212,7 @@ FormCard.FormCardPage { Loader { id: colorSchemeDelegate - visible: item !== null && Qt.platform.os !== "android" + visible: item !== null source: "qrc:/org/kde/neochat/qml/ColorScheme.qml" Layout.fillWidth: true }