mirror of
https://github.com/DioxusLabs/dioxus
synced 2025-02-16 13:48:26 +00:00
fix: windows hot reload (#2687)
This commit is contained in:
parent
117c9d18ae
commit
9ca5396343
1 changed files with 2 additions and 1 deletions
|
@ -62,7 +62,7 @@ impl Watcher {
|
|||
match e.kind {
|
||||
|
||||
// An event emitted when the metadata of a file or folder is changed.
|
||||
EventKind::Modify(ModifyKind::Data(_)) |
|
||||
EventKind::Modify(ModifyKind::Data(_) | ModifyKind::Any) |
|
||||
EventKind::Create(_) |
|
||||
EventKind::Remove(_) => {
|
||||
_ = tx.unbounded_send(e);
|
||||
|
@ -139,6 +139,7 @@ impl Watcher {
|
|||
for event in self.queued_events.drain(..) {
|
||||
// We only care about modify/crate/delete events
|
||||
match event.kind {
|
||||
EventKind::Modify(ModifyKind::Any) => {}
|
||||
EventKind::Modify(ModifyKind::Data(_)) => {}
|
||||
EventKind::Modify(ModifyKind::Name(_)) => {}
|
||||
EventKind::Create(_) => {}
|
||||
|
|
Loading…
Add table
Reference in a new issue