ladybird/Userland/DevTools/GMLPlayground/GMLPlaygroundWindow.gml
Sam Atkins 7164b2f758 GMLPlayground: Add a toolbar
No new features, but it sure makes things look more fancy. :^)
2023-01-13 13:37:19 +01:00

23 lines
436 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"
}
}
}