From d06f1cbb9cdbf951188f3fee6a67e7bdcd6c0fad Mon Sep 17 00:00:00 2001 From: Tim Ledbetter Date: Tue, 16 Jan 2024 18:01:42 +0000 Subject: [PATCH] DisplaySettings: Disable custom color scheme combobox by default Previously, the GML property declaration that does this was being ignored, as the value was in quotes. --- Userland/Applications/DisplaySettings/ThemesSettings.gml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/DisplaySettings/ThemesSettings.gml b/Userland/Applications/DisplaySettings/ThemesSettings.gml index fd5a0d1455..583a2bdbd3 100644 --- a/Userland/Applications/DisplaySettings/ThemesSettings.gml +++ b/Userland/Applications/DisplaySettings/ThemesSettings.gml @@ -52,7 +52,7 @@ @GUI::ComboBox { name: "color_scheme_combo" - enabled: "false" + enabled: false } }