1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:17:35 +00:00

GMLPlayground: Move layout to GML

There isn't much layout right now, but it felt very wrong to not have
the GML editor use GML. :^)
This commit is contained in:
Sam Atkins 2023-01-12 17:01:28 +00:00 committed by Andreas Kling
parent 0bc591a69b
commit d443a51b50
3 changed files with 31 additions and 3 deletions

View file

@ -0,0 +1,17 @@
@GUI::Widget {
layout: @GUI::VerticalBoxLayout {}
fill_with_background_color: true
@GUI::HorizontalSplitter {
layout: @GUI::HorizontalBoxLayout {}
name: "splitter"
@GUI::TextEditor {
name: "text_editor"
}
@GUI::Frame {
name: "preview_frame"
}
}
}