workspace taskbars: Fix windows not showing

Windows were not being shown or updated unless the window-rewrite config were present.
This commit is contained in:
Pol Rivero
2025-01-04 22:10:23 +01:00
parent 3948c0d154
commit 5ee0d1c7fe
4 changed files with 15 additions and 12 deletions

View File

@ -33,7 +33,7 @@ struct WindowRepr {
std::string repr_rewrite;
public:
bool empty() const { return repr_rewrite.empty(); }
bool empty() const { return address.empty(); }
};
class WindowCreationPayload {