add refreshrate or resolution preference

This commit is contained in:
Fabio Lenherr
2022-09-22 00:22:39 +02:00
parent 30d16373d0
commit 215125bd66
2 changed files with 32 additions and 15 deletions

View File

@@ -460,8 +460,10 @@ void CConfigManager::handleMonitor(const std::string& command, const std::string
if (curitem.find("pref") == 0) {
newrule.resolution = Vector2D();
} else if(curitem.find("high") == 0) {
} else if(curitem.find("highrr") == 0) {
newrule.resolution = Vector2D(-1,-1);
} else if(curitem.find("highres") == 0) {
newrule.resolution = Vector2D(-1,-2);
} else {
newrule.resolution.x = stoi(curitem.substr(0, curitem.find_first_of('x')));
newrule.resolution.y = stoi(curitem.substr(curitem.find_first_of('x') + 1, curitem.find_first_of('@')));