1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:57:47 +00:00

MouseSettings: Tweak UI layout of cursor themes tab

This commit is contained in:
Andreas Kling 2021-08-30 01:27:08 +02:00
parent d9900ece2f
commit f727dc3c42

View file

@ -2,27 +2,22 @@
fill_with_background_color: true fill_with_background_color: true
layout: @GUI::VerticalBoxLayout { layout: @GUI::VerticalBoxLayout {
margins: [10, 10, 10, 10] margins: [10]
} }
@GUI::GroupBox { @GUI::GroupBox {
title: "Theme" title: "Available Cursor Themes"
layout: @GUI::VerticalBoxLayout { layout: @GUI::VerticalBoxLayout {
margins: [16, 2, 16, 16] margins: [16, 8, 8]
spacing: 4
} }
@GUI::Widget { @GUI::Widget {
fixed_height: 50 shrink_to_fit: true
layout: @GUI::HorizontalBoxLayout { layout: @GUI::HorizontalBoxLayout {
spacing: 10 spacing: 8
margins: [8, 16, 0, 8]
}
@GUI::Label {
text: "Select Theme: "
text_alignment: "CenterRight"
} }
@GUI::ComboBox { @GUI::ComboBox {
@ -33,7 +28,6 @@
@GUI::TableView { @GUI::TableView {
name: "cursors_tableview" name: "cursors_tableview"
font_size: 12
} }
} }
} }