Fix current view tags status

This commit is contained in:
2024-05-15 19:20:48 -07:00
parent 929db0098a
commit 930dcb7dcd
2 changed files with 10 additions and 3 deletions

View File

@ -718,7 +718,10 @@ fn commitTransaction(root: *Root) void {
{
var it = server.input_manager.seats.first;
while (it) |node| : (it = node.next) node.data.cursor.updateState();
while (it) |node| : (it = node.next) {
node.data.cursor.updateState();
node.data.sendFocusedView();
}
}
{