1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:24:57 +00:00
serenity/Userland/DevTools/GMLPlayground/GMLPlaygroundWindow.gml
2023-06-17 20:36:03 +02:00

27 lines
491 B
Text

@GUI::Widget {
layout: @GUI::VerticalBoxLayout {}
fill_with_background_color: true
@GUI::ToolbarContainer {
@GUI::Toolbar {
name: "toolbar"
}
}
@GUI::HorizontalSplitter {
layout: @GUI::HorizontalBoxLayout {}
name: "splitter"
@GUI::TextEditor {
name: "text_editor"
}
@GUI::Frame {
name: "preview_frame"
}
}
@GUI::Statusbar {
name: "statusbar"
}
}