refactor: remove duplicate input trace

This commit is contained in:
CJ van den Berg 2025-01-28 22:01:50 +01:00
parent 78affc4052
commit 7481be5aaf
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -480,7 +480,6 @@ fn dispatch_input(ctx: *anyopaque, cbor_msg: []const u8) void {
const m: tp.message = .{ .buf = cbor_msg };
const from = tp.self_pid();
self.unrendered_input_events_count += 1;
tp.trace(tp.channel.input, m);
self.input_listeners.send(from, m) catch {};
if (self.keyboard_focus) |w|
if (w.send(from, m) catch |e| ret: {