1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-17 22:42:28 +00:00
serenity/Userland/Games/MasterWord/MasterWord.gml
thankyouverycool 76d17e6a8e MasterWord: Rectify resizing game window
Previously resizing the window did not take into account the
height of the status bar. The board now fixes its size on reset
and allows the Window to auto shrink to the perfect dimensions.
2023-04-17 20:31:12 +02:00

12 lines
209 B
Text

@GUI::Widget {
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {}
@MasterWord::WordGame {
name: "word_game"
}
@GUI::Statusbar {
name: "statusbar"
}
}