fix: scrollbar active state should not depend on hover

This commit is contained in:
CJ van den Berg 2024-10-31 13:53:46 +01:00
parent da85c40603
commit 7115d3eddc
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -82,7 +82,6 @@ pub fn receive(self: *Self, _: tp.pid_ref, m: tp.message) error{Exit}!bool {
self.active = false;
return true;
} else if (try m.match(.{ "H", tp.extract(&self.hover) })) {
self.active = false;
return true;
}