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 fed8290 commit a43da8cCopy full SHA for a43da8c
cosmic-comp-config/src/lib.rs
@@ -48,6 +48,8 @@ pub struct CosmicCompConfig {
48
pub descale_xwayland: bool,
49
/// The threshold before windows snap themselves to output edges
50
pub edge_snap_threshold: u32,
51
+ /// How far the pointer can travel before it's considered as moved
52
+ pub pointer_moved_epsilon: u32,
53
}
54
55
impl Default for CosmicCompConfig {
@@ -79,6 +81,7 @@ impl Default for CosmicCompConfig {
79
81
focus_follows_cursor_delay: 250,
80
82
descale_xwayland: false,
83
edge_snap_threshold: 0,
84
+ pointer_moved_epsilon: 10,
85
86
87
0 commit comments