We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d15264d commit f693885Copy full SHA for f693885
cosmic-comp-config/src/lib.rs
@@ -31,6 +31,8 @@ pub struct CosmicCompConfig {
31
pub focus_follows_cursor_delay: u64,
32
/// Let X11 applications scale themselves
33
pub descale_xwayland: bool,
34
+ /// How far the pointer can travel before it's considered as moved
35
+ pub pointer_moved_epsilon: u32,
36
}
37
38
impl Default for CosmicCompConfig {
@@ -60,6 +62,7 @@ impl Default for CosmicCompConfig {
60
62
cursor_follows_focus: false,
61
63
focus_follows_cursor_delay: 250,
64
descale_xwayland: false,
65
+ pointer_moved_epsilon: 10,
66
67
68
0 commit comments