1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 02:27:44 +00:00

Welcome: Port to GML Compiler

This commit is contained in:
Mr.UNIX 2024-01-19 22:09:21 +01:00 committed by Tim Schumacher
parent 0a4ef6f3b7
commit 69ffdd5738
5 changed files with 15 additions and 16 deletions

View file

@ -1,4 +1,4 @@
@GUI::Widget {
@Welcome::WelcomeWidget {
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
margins: [8]
@ -56,7 +56,7 @@
@GUI::Label {
name: "tip_label"
text_alignment: "TopLeft"
word_wrap: true
text_wrapping: "Wrap"
font_size: 12
}
}
@ -91,13 +91,13 @@
@GUI::Button {
name: "help_button"
text: "Help Contents"
icon: "/res/icons/16x16/book-open.png"
icon_from_path: "/res/icons/16x16/book-open.png"
}
@GUI::Button {
name: "next_button"
text: "Next Tip"
icon: "/res/icons/16x16/go-forward.png"
icon_from_path: "/res/icons/16x16/go-forward.png"
}
@GUI::Layout::Spacer {}