From 73dbacd16d16d8a58d9c12e2a3ebcf4538faf55b Mon Sep 17 00:00:00 2001 From: vaxerski Date: Sat, 24 Sep 2022 13:42:18 +0100 Subject: [PATCH] overwrite wsbind rules on existing --- src/config/ConfigManager.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/config/ConfigManager.cpp b/src/config/ConfigManager.cpp index 6f90c691..83f56ae1 100644 --- a/src/config/ConfigManager.cpp +++ b/src/config/ConfigManager.cpp @@ -939,6 +939,13 @@ void CConfigManager::handleBindWS(const std::string& command, const std::string& const auto WS = value.substr(0, value.find_first_of(',')); const auto MON = value.substr(value.find_first_of(',') + 1); + const auto FOUND = std::find_if(boundWorkspaces.begin(), boundWorkspaces.end(), [&](const auto& other) { return other.first == WS; }); + + if (FOUND != boundWorkspaces.end()) { + FOUND->second = MON; + return; + } + boundWorkspaces.push_back({WS, MON}); }