allow current in monitorfromstring

This commit is contained in:
vaxerski 2022-09-10 19:57:57 +02:00
parent 8808d40008
commit f024d7114f
1 changed files with 3 additions and 0 deletions

View File

@ -1484,6 +1484,9 @@ CMonitor* CCompositor::getMonitorFromString(const std::string& name) {
return nullptr;
}
} else {
if (name == "current")
return g_pCompositor->m_pLastMonitor;
if (isDirection(name)) {
const auto PMONITOR = g_pCompositor->getMonitorInDirection(name[0]);
return PMONITOR;