diff options
author | Andreas Kling <kling@serenityos.org> | 2023-01-01 13:47:38 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-01-01 13:48:29 +0100 |
commit | e3b9f78eb90403cb0effe683d8a1cbc4c7e0256b (patch) | |
tree | 5d115d4d9aac42d911207b8acb286d0b98038073 /Userland/Applications/MouseSettings | |
parent | 16793d1c3d58bc8e563127878f967c15934ac0c3 (diff) | |
download | serenity-e3b9f78eb90403cb0effe683d8a1cbc4c7e0256b.zip |
MouseSettings: Tweak "Natural scrolling" checkbox size
The old size wasn't wide enough to accommodate a focus rect, and we
ended up clipping the right edge of it.
Diffstat (limited to 'Userland/Applications/MouseSettings')
-rw-r--r-- | Userland/Applications/MouseSettings/Mouse.gml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/MouseSettings/Mouse.gml b/Userland/Applications/MouseSettings/Mouse.gml index 7e66c29d84..6524711451 100644 --- a/Userland/Applications/MouseSettings/Mouse.gml +++ b/Userland/Applications/MouseSettings/Mouse.gml @@ -108,7 +108,7 @@ name: "natural_scroll_checkbox" text: "Natural scrolling" tooltip: "Content follows motion instead of the viewport,\nalso commonly referred to as \"reverse scrolling\"." - preferred_width: 108 + preferred_width: 110 } } } |