Added scrolledge as a recognized possible value for the setting with key OPTION_SCROLL_STYLE in config.rs.

This commit is contained in:
Jonathan Gilbert
2025-11-03 00:09:36 -06:00
parent 32934c7425
commit a8e31504b0

View File

@@ -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"])
}