diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/config.rs | 2 | ||||
| -rw-r--r-- | src/renderer/mod.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/config.rs b/src/config.rs index 260c1a70..3c57560c 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1474,7 +1474,7 @@ impl Monitor { Monitor { _thread: ::util::thread::spawn_named("config watcher", move || { let (tx, rx) = mpsc::channel(); - let mut watcher = watcher(tx, Duration::from_millis(500)).unwrap(); + let mut watcher = watcher(tx, Duration::from_millis(10)).unwrap(); let config_path = ::std::fs::canonicalize(path) .expect("canonicalize config path"); diff --git a/src/renderer/mod.rs b/src/renderer/mod.rs index 3c07450b..eb8af395 100644 --- a/src/renderer/mod.rs +++ b/src/renderer/mod.rs @@ -537,7 +537,7 @@ impl QuadRenderer { if cfg!(feature = "live-shader-reload") { ::std::thread::spawn(move || { let (tx, rx) = ::std::sync::mpsc::channel(); - let mut watcher = watcher(tx, Duration::from_millis(500)).expect("create file watcher"); + let mut watcher = watcher(tx, Duration::from_millis(10)).expect("create file watcher"); watcher.watch(TEXT_SHADER_F_PATH, RecursiveMode::NonRecursive) .expect("watch fragment shader"); watcher.watch(TEXT_SHADER_V_PATH, RecursiveMode::NonRecursive) |