Initial public release of Warp.
Repo-Sync-Origin: warpdotdev/warp-internal@12af1d983b
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
use settings::{macros::define_settings_group, SupportedPlatforms, SyncToCloud};
|
||||
|
||||
define_settings_group!(ScrollSettings, settings: [
|
||||
mouse_scroll_multiplier: MouseScrollMultiplier {
|
||||
type: f32,
|
||||
default: 3.0,
|
||||
supported_platforms: SupportedPlatforms::ALL,
|
||||
sync_to_cloud: SyncToCloud::Never,
|
||||
private: false,
|
||||
toml_path: "general.mouse_scroll_multiplier",
|
||||
description: "The scroll speed multiplier for mouse scroll events.",
|
||||
},
|
||||
]);
|
||||
Reference in New Issue
Block a user