mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 14:05:59 +01:00
monitor: minor adjustments
This commit is contained in:
parent
fa3de9b70e
commit
c3a83daa1e
2 changed files with 2 additions and 7 deletions
|
@ -83,9 +83,8 @@ void CMonitor::onConnect(bool noRule) {
|
|||
|
||||
wlr_output_enable(output, 0);
|
||||
|
||||
if (!wlr_output_commit(output)) {
|
||||
if (!wlr_output_commit(output))
|
||||
Debug::log(ERR, "Couldn't commit disabled state on output %s", output->name);
|
||||
}
|
||||
|
||||
Events::listener_change(nullptr, nullptr);
|
||||
|
||||
|
@ -127,11 +126,6 @@ void CMonitor::onConnect(bool noRule) {
|
|||
|
||||
m_bEnabled = true;
|
||||
|
||||
// create it in the arr
|
||||
vecPosition = monitorRule.offset;
|
||||
vecSize = monitorRule.resolution;
|
||||
refreshRate = monitorRule.refreshRate;
|
||||
|
||||
wlr_output_enable(output, 1);
|
||||
|
||||
// set mode, also applies
|
||||
|
|
|
@ -1541,6 +1541,7 @@ bool CHyprRenderer::applyMonitorRule(CMonitor* pMonitor, SMonitorRule* pMonitorR
|
|||
|
||||
if (!pMonitor->m_bEnabled) {
|
||||
pMonitor->onConnect(true); // enable it.
|
||||
Debug::log(LOG, "Monitor %s is disabled but is requested to be enabled", pMonitor->szName.c_str());
|
||||
force = true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue