From a8e31504b0d3c2314e87877942589f6d98c8000d Mon Sep 17 00:00:00 2001 From: Jonathan Gilbert Date: Mon, 3 Nov 2025 00:09:36 -0600 Subject: [PATCH] Added `scrolledge` as a recognized possible value for the setting with key OPTION_SCROLL_STYLE in config.rs. --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 7c3cb32..1f71c33 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1948,7 +1948,7 @@ impl UserDefaultConfig { keys::OPTION_VIEW_STYLE => self.get_string(key, "adaptive", vec!["original"]), #[cfg(not(any(target_os = "android", target_os = "ios")))] keys::OPTION_VIEW_STYLE => self.get_string(key, "original", vec!["adaptive"]), - keys::OPTION_SCROLL_STYLE => self.get_string(key, "scrollauto", vec!["scrollbar"]), + keys::OPTION_SCROLL_STYLE => self.get_string(key, "scrollauto", vec!["scrolledge", "scrollbar"]), keys::OPTION_IMAGE_QUALITY => { self.get_string(key, "balanced", vec!["best", "low", "custom"]) }