WidgetGallery: Remove quotes around GML boolean values

These declarations were previously being ignored, leading to some
buttons being erroneously enabled.
This commit is contained in:
Tim Ledbetter 2024-01-16 18:11:17 +00:00 committed by Tim Flynn
parent d06f1cbb9c
commit ad89aea1fe

View file

@ -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 {}