Skip to content

Commit

Permalink
Add a generic wlroots fallback in lxqttaskbarbackendwayland.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusbritanicus committed Mar 29, 2024
1 parent e53254e commit fa1defa
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions panel/backends/wayland/lxqttaskbarbackendwayland.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ LXQtTaskbarWaylandBackend::LXQtTaskbarWaylandBackend(QObject *parent)
break;
}

else if ( desktop == "wlroots" )
{
qDebug() << "--------------> Using generic wlroots backend";
m_backend = new LXQtTaskbarWlrootsBackend();
break;
}

else
{
// m_backend = nullptr;
Expand Down

0 comments on commit fa1defa

Please sign in to comment.