mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-10 08:45:59 +01:00
allow current in monitorfromstring
This commit is contained in:
parent
8808d40008
commit
f024d7114f
1 changed files with 3 additions and 0 deletions
|
@ -1484,6 +1484,9 @@ CMonitor* CCompositor::getMonitorFromString(const std::string& name) {
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
if (name == "current")
|
||||||
|
return g_pCompositor->m_pLastMonitor;
|
||||||
|
|
||||||
if (isDirection(name)) {
|
if (isDirection(name)) {
|
||||||
const auto PMONITOR = g_pCompositor->getMonitorInDirection(name[0]);
|
const auto PMONITOR = g_pCompositor->getMonitorInDirection(name[0]);
|
||||||
return PMONITOR;
|
return PMONITOR;
|
||||||
|
|
Loading…
Reference in a new issue