summaryrefslogtreecommitdiff
path: root/Userland/DevTools/GMLPlayground/GMLPlaygroundWindow.gml
blob: 3f5c279ca8d2006ded370cf65bb04e71a2c252c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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"
        }
    }
}