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:
parent
0bc591a69b
commit
d443a51b50
3 changed files with 31 additions and 3 deletions
17
Userland/DevTools/GMLPlayground/GMLPlaygroundWindow.gml
Normal file
17
Userland/DevTools/GMLPlayground/GMLPlaygroundWindow.gml
Normal 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"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue