update init count

This commit is contained in:
yggverse 2025-03-11 22:17:47 +02:00
parent 1b8bfe2f73
commit 0f9e864173
2 changed files with 2 additions and 6 deletions

View File

@ -42,11 +42,7 @@ impl Item {
pub fn close(&mut self) {
match self.closed {
Some(ref mut closed) => closed.pulse(),
None => {
let mut event = Event::new();
event.pulse();
self.closed = Some(event)
}
None => self.closed = Some(Event::new()),
}
}
}

View File

@ -12,7 +12,7 @@ impl Event {
pub fn new() -> Self {
Self {
time: now(),
count: 0,
count: 1,
}
}