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:
Xaver Hugl 2022-09-13 17:05:43 +02:00
parent 6d3f00e82c
commit eccfbbd6fd

View file

@ -441,6 +441,10 @@ void DrmOutput::applyQueuedChanges(const OutputConfiguration &config)
Q_EMIT changed();
if (isEnabled() && dpmsMode() == DpmsMode::On) {
m_gpu->platform()->turnOutputsOn();
}
updateCursor();
}