Skip to content

Commit

Permalink
workspace taskbars: Fix windows not showing
Browse files Browse the repository at this point in the history
  • Loading branch information
pol-rivero committed Jan 4, 2025
1 parent 22fc31e commit 5fd6e94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/hyprland/workspace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ void Workspace::insertWindow(WindowCreationPayload create_window_paylod) {
if (!create_window_paylod.isEmpty(m_workspaceManager)) {
auto repr = create_window_paylod.repr(m_workspaceManager);

if (!repr.empty()) {
if (!repr.empty() || m_workspaceManager.enableWorkspaceTaskbar()) {
auto addr = create_window_paylod.getAddress();
auto it = std::ranges::find_if(
m_windowMap, [&addr](const auto &window) { return window.address == addr; });
Expand Down

0 comments on commit 5fd6e94

Please sign in to comment.