mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-22 02:34:33 +03:00
chore: increase debounce timeout for file change events to prevent multiple events from being sent for a single file change
This commit is contained in:
parent
af907c2902
commit
dd5049244b
@ -22,7 +22,7 @@ pub struct Dispatcher {
|
||||
|
||||
/// The timeout for debouncing file change events.
|
||||
/// This is used to prevent multiple events from being sent for a single file change.
|
||||
static DEBOUNCE_TIMEOUT: Duration = Duration::from_millis(10);
|
||||
static DEBOUNCE_TIMEOUT: Duration = Duration::from_millis(100);
|
||||
|
||||
#[derive(Debug, thiserror::Error)]
|
||||
pub enum RunError {
|
||||
|
Loading…
Reference in New Issue
Block a user