wayland: Init outputs before emitting WaylandServer::initialized
This shouldn't make any difference, but it makes more sense to emit the initialized signal after the outputs are added rather than before.
This commit is contained in:
parent
1e4b48df2e
commit
000ed7b122
1 changed files with 2 additions and 2 deletions
|
@ -604,6 +604,8 @@ void WaylandServer::initWorkspace()
|
|||
});
|
||||
}
|
||||
|
||||
initOutputs();
|
||||
|
||||
if (hasScreenLockerIntegration()) {
|
||||
if (m_internalConnection.interfacesAnnounced) {
|
||||
initScreenLocker();
|
||||
|
@ -613,8 +615,6 @@ void WaylandServer::initWorkspace()
|
|||
} else {
|
||||
emit initialized();
|
||||
}
|
||||
|
||||
initOutputs();
|
||||
}
|
||||
|
||||
void WaylandServer::initScreenLocker()
|
||||
|
|
Loading…
Reference in a new issue