feat: update thespian and add delay_send_cancellable tags

This commit is contained in:
CJ van den Berg 2024-08-29 16:52:26 +02:00
parent c01576412a
commit 336ea8684e
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
4 changed files with 5 additions and 5 deletions

View file

@ -192,7 +192,7 @@ fn update_mouse_idle_timer(self: *Self) void {
t.deinit();
self.mouse_idle_timer = null;
}
self.mouse_idle_timer = tp.self_pid().delay_send_cancellable(self.a, delay, .{"MOUSE_IDLE"}) catch return;
self.mouse_idle_timer = tp.self_pid().delay_send_cancellable(self.a, "tui.mouse_idle_timer", delay, .{"MOUSE_IDLE"}) catch return;
}
fn receive(self: *Self, from: tp.pid_ref, m: tp.message) tp.result {