dispatchers: add tiled/floating to cyclenext

This commit is contained in:
vaxerski 2023-12-24 15:08:48 +01:00
parent ff75f991a5
commit 5aab4a96e3
4 changed files with 36 additions and 7 deletions

View file

@ -50,6 +50,15 @@ class CVarList {
return m_vArgs.end();
}
bool contains(const std::string& el) {
for (auto& a : m_vArgs) {
if (a == el)
return true;
}
return false;
}
private:
std::vector<std::string> m_vArgs;
};