mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
02d94a303c
Corrects a slew of titles, buttons, labels, menu items and status bars for capitalization, ellipses and punctuation. Rewords a few actions and dialogs to use uniform language and punctuation.
65 lines
1.3 KiB
Text
65 lines
1.3 KiB
Text
@GUI::Widget {
|
|
layout: @GUI::VerticalBoxLayout {}
|
|
|
|
@GUI::ToolbarContainer {
|
|
@GUI::Toolbar {
|
|
name: "toolbar"
|
|
|
|
@GUI::Label {
|
|
text: "Columns: "
|
|
autosize: true
|
|
}
|
|
|
|
@GUI::SpinBox {
|
|
name: "columns_spinbox"
|
|
min: 10
|
|
max: 999
|
|
fixed_width: 40
|
|
}
|
|
|
|
@GUI::VerticalSeparator {}
|
|
|
|
@GUI::Label {
|
|
text: "Rows: "
|
|
autosize: true
|
|
}
|
|
|
|
@GUI::SpinBox {
|
|
name: "rows_spinbox"
|
|
min: 10
|
|
max: 999
|
|
fixed_width: 40
|
|
}
|
|
|
|
@GUI::VerticalSeparator {}
|
|
|
|
@GUI::Label {
|
|
text: "Speed: "
|
|
autosize: true
|
|
}
|
|
|
|
@GUI::SpinBox {
|
|
name: "interval_spinbox"
|
|
min: 10
|
|
max: 5000
|
|
fixed_width: 60
|
|
}
|
|
|
|
@GUI::Label {
|
|
text: " ms"
|
|
autosize: true
|
|
}
|
|
|
|
@GUI::VerticalSeparator {}
|
|
}
|
|
}
|
|
|
|
@GUI::Frame {
|
|
name: "board_widget_container"
|
|
fill_with_background_color: true
|
|
}
|
|
|
|
@GUI::Statusbar {
|
|
name: "statusbar"
|
|
}
|
|
}
|