backends/drm: turn all outputs on when new output is hotplugged
Otherwise only the new output is turned on, which is a bit weird
This commit is contained in:
parent
6d3f00e82c
commit
eccfbbd6fd
1 changed files with 4 additions and 0 deletions
|
@ -441,6 +441,10 @@ void DrmOutput::applyQueuedChanges(const OutputConfiguration &config)
|
|||
|
||||
Q_EMIT changed();
|
||||
|
||||
if (isEnabled() && dpmsMode() == DpmsMode::On) {
|
||||
m_gpu->platform()->turnOutputsOn();
|
||||
}
|
||||
|
||||
updateCursor();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue