Skip to content

Commit

Permalink
Fixed changing of desktop names under X11 (#2174)
Browse files Browse the repository at this point in the history
This fixes a regression.
  • Loading branch information
tsujan authored Nov 23, 2024
1 parent 42d08db commit f77ae98
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions panel/backends/xcb/lxqtwmbackend_x11.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ LXQtWMBackendX11::LXQtWMBackendX11(QObject *parent)

connect(KX11Extras::self(), &KX11Extras::numberOfDesktopsChanged, this, &ILXQtAbstractWMInterface::workspacesCountChanged);
connect(KX11Extras::self(), &KX11Extras::currentDesktopChanged, this, &ILXQtAbstractWMInterface::currentWorkspaceChanged);
connect(KX11Extras::self(), &KX11Extras::desktopNamesChanged, this, [this]() {
emit workspaceNameChanged(-1); // without specifying an index
});

connect(KX11Extras::self(), &KX11Extras::activeWindowChanged, this, &ILXQtAbstractWMInterface::activeWindowChanged);
}
Expand Down

0 comments on commit f77ae98

Please sign in to comment.