From a19a40d6d3d6dfa9f833dc92c3306216e2d72c62 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 20 Jul 2021 22:51:45 +0200 Subject: MouseSettings: Further tweaks to margins and spacing :^) --- .../MouseSettings/MouseSettingsWindow.gml | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/Userland/Applications/MouseSettings/MouseSettingsWindow.gml b/Userland/Applications/MouseSettings/MouseSettingsWindow.gml index 2ac829a11f..93e3b68949 100644 --- a/Userland/Applications/MouseSettings/MouseSettingsWindow.gml +++ b/Userland/Applications/MouseSettings/MouseSettingsWindow.gml @@ -1,5 +1,6 @@ @GUI::Frame { fill_with_background_color: true + layout: @GUI::VerticalBoxLayout { margins: [10, 10, 10, 10] spacing: 5 @@ -11,11 +12,11 @@ layout: @GUI::VerticalBoxLayout { margins: [8, 16, 8, 8] + spacing: 2 } @GUI::Widget { layout: @GUI::HorizontalBoxLayout { - margins: [8, 8, 8, 8] spacing: 16 } @@ -33,6 +34,11 @@ @GUI::Widget { layout: @GUI::HorizontalBoxLayout { + spacing: 16 + } + + @GUI::Widget { + fixed_width: 32 } @GUI::HorizontalSlider { @@ -55,11 +61,11 @@ layout: @GUI::VerticalBoxLayout { margins: [8, 16, 8, 8] + spacing: 2 } @GUI::Widget { layout: @GUI::HorizontalBoxLayout { - margins: [8, 8, 8, 8] spacing: 16 } @@ -77,10 +83,12 @@ @GUI::Widget { layout: @GUI::HorizontalBoxLayout { + margins: [8, 8, 8, 8] spacing: 8 } @GUI::Widget { + fixed_width: 32 } @GUI::Label { @@ -107,11 +115,11 @@ layout: @GUI::VerticalBoxLayout { margins: [8, 16, 8, 8] + spacing: 2 } @GUI::Widget { layout: @GUI::HorizontalBoxLayout { - margins: [8, 8, 8, 8] spacing: 16 } @@ -129,6 +137,12 @@ @GUI::Widget { layout: @GUI::HorizontalBoxLayout { + margins: [8, 8, 8, 8] + spacing: 8 + } + + @GUI::Widget { + fixed_width: 32 } @GUI::HorizontalSlider { -- cgit v1.2.3