From e3b9f78eb90403cb0effe683d8a1cbc4c7e0256b Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 1 Jan 2023 13:47:38 +0100 Subject: [PATCH] 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. --- Userland/Applications/MouseSettings/Mouse.gml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/MouseSettings/Mouse.gml b/Userland/Applications/MouseSettings/Mouse.gml index 7e66c29d845..6524711451a 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 } } }