diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2021-11-20 16:38:04 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-11-20 21:05:20 +0000 |
commit | 9fc53017c6c815bbf97ce31b91415dae77774c2b (patch) | |
tree | 2ce8f36102808c80e42c4ad1324d7590bcd20411 /Userland/Applications/MouseSettings | |
parent | f20b0403bc7e3d00a875a5e7cc56a8c02333a357 (diff) | |
download | serenity-9fc53017c6c815bbf97ce31b91415dae77774c2b.zip |
MouseSettings: Adjust layout so mouse-button image is no longer clipped
Diffstat (limited to 'Userland/Applications/MouseSettings')
-rw-r--r-- | Userland/Applications/MouseSettings/Mouse.gml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Userland/Applications/MouseSettings/Mouse.gml b/Userland/Applications/MouseSettings/Mouse.gml index 7b64cbe993..c12823beb1 100644 --- a/Userland/Applications/MouseSettings/Mouse.gml +++ b/Userland/Applications/MouseSettings/Mouse.gml @@ -8,7 +8,7 @@ @GUI::GroupBox { title: "Cursor speed" - fixed_height: 110 + fixed_height: 106 layout: @GUI::VerticalBoxLayout { margins: [6] @@ -57,7 +57,7 @@ @GUI::GroupBox { title: "Scroll wheel step size" - fixed_height: 110 + fixed_height: 106 layout: @GUI::VerticalBoxLayout { margins: [6] @@ -111,7 +111,7 @@ @GUI::GroupBox { title: "Double-click speed" - fixed_height: 110 + fixed_height: 106 layout: @GUI::VerticalBoxLayout { margins: [6] @@ -161,7 +161,7 @@ @GUI::GroupBox { title: "Button configuration" - fixed_height: 60 + fixed_height: 68 layout: @GUI::VerticalBoxLayout { margins: [16, 8, 8] |