From ad89aea1fe6e8904d495d9c365d413326e8fcfbd Mon Sep 17 00:00:00 2001 From: Tim Ledbetter Date: Tue, 16 Jan 2024 18:11:17 +0000 Subject: [PATCH] WidgetGallery: Remove quotes around GML boolean values These declarations were previously being ignored, leading to some buttons being erroneously enabled. --- Userland/Demos/WidgetGallery/GalleryGML/BasicsTab.gml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Userland/Demos/WidgetGallery/GalleryGML/BasicsTab.gml b/Userland/Demos/WidgetGallery/GalleryGML/BasicsTab.gml index 4d40eb230a..6b36d5ab69 100644 --- a/Userland/Demos/WidgetGallery/GalleryGML/BasicsTab.gml +++ b/Userland/Demos/WidgetGallery/GalleryGML/BasicsTab.gml @@ -98,7 +98,7 @@ @GUI::Button { name: "disabled_normal_button" text: "Disabled" - enabled: "false" + enabled: false } @GUI::Layout::Spacer {} @@ -120,7 +120,7 @@ @GUI::Button { name: "disabled_coolbar_button" text: "Disabled" - enabled: "false" + enabled: false button_style: "Coolbar" } @@ -196,7 +196,7 @@ @GUI::Button { name: "disabled_icon_button" text: "Disabled" - enabled: "false" + enabled: false } @GUI::Layout::Spacer {}