fix focus passing when moving a column to another desktop

This commit is contained in:
Peter Fajdiga
2025-09-13 12:35:16 +02:00
parent 24c1fa0a38
commit 456bbf30b4

View File

@@ -61,6 +61,10 @@ class Window {
public focus() {
this.client.focus();
if (!this.isFocused()) {
// in some situations focus assignment just doesn't work, let's do it later
this.column.grid.focusPasser.request(this);
}
}
public isFocused() {