blob: 1ea9680ea884c249e57737ad56f6a74daca77649 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
@GUI::Frame {
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
margins: [8]
}
@GUI::GroupBox {
title: "Available Cursor Themes"
layout: @GUI::VerticalBoxLayout {
margins: [6]
spacing: 4
}
@GUI::Widget {
preferred_height: "fit"
layout: @GUI::HorizontalBoxLayout {
spacing: 8
}
@GUI::ComboBox {
name: "theme_name_box"
model_only: true
}
}
@GUI::TableView {
name: "cursors_tableview"
}
}
}
|