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:
parent
d06f1cbb9c
commit
ad89aea1fe
Notes:
sideshowbarker
2024-07-17 06:38:11 +09:00
Author: https://github.com/tcl3 Commit: https://github.com/SerenityOS/serenity/commit/ad89aea1fe Pull-request: https://github.com/SerenityOS/serenity/pull/22811 Reviewed-by: https://github.com/kleinesfilmroellchen ✅
1 changed files with 3 additions and 3 deletions
|
@ -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 {}
|
||||
|
|
Loading…
Add table
Reference in a new issue