Skip to content

Commit

Permalink
Unpause delay on CV unplug or unmap
Browse files Browse the repository at this point in the history
Signed-off-by: Petr Horacek <petr@zlosynth.com>
  • Loading branch information
phoracek committed Nov 10, 2023
1 parent 0d047cf commit fe765bf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions control/src/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,11 @@ impl Store {
} else {
self.cache.display.reset_paused();
}
} else if !control.is_plugged {
self.cache.attributes.paused_delay = false;
}
} else {
self.cache.attributes.paused_delay = false;
}
}
}
Expand Down

0 comments on commit fe765bf

Please sign in to comment.