hyprland/ipc: match by name in refreshMonitors instead of id

Was causing ghost/duplicate monitors from usages where the id was not known.
This commit is contained in:
outfoxxed 2024-06-06 00:58:10 -07:00
parent ef1a4134f0
commit bc349998df
Signed by: outfoxxed
GPG Key ID: 4C88A185FB89301E
1 changed files with 6 additions and 6 deletions

View File

@ -509,15 +509,15 @@ void HyprlandIpc::refreshMonitors(bool canCreate, bool tryAgain) {
auto json = QJsonDocument::fromJson(resp).array();
const auto& mList = this->mMonitors.valueList();
auto ids = QVector<qint32>();
auto names = QVector<QString>();
for (auto entry: json) {
auto object = entry.toObject().toVariantMap();
auto id = object.value("id").toInt();
auto name = object.value("name").toString();
auto monitorIter =
std::find_if(mList.begin(), mList.end(), [id](const HyprlandMonitor* m) {
return m->id() == id;
std::find_if(mList.begin(), mList.end(), [name](const HyprlandMonitor* m) {
return m->name() == name;
});
auto* monitor = monitorIter == mList.end() ? nullptr : *monitorIter;
@ -534,13 +534,13 @@ void HyprlandIpc::refreshMonitors(bool canCreate, bool tryAgain) {
this->mMonitors.insertObject(monitor);
}
ids.push_back(id);
names.push_back(name);
}
auto removedMonitors = QVector<HyprlandMonitor*>();
for (auto* monitor: mList) {
if (!ids.contains(monitor->id())) {
if (!names.contains(monitor->name())) {
removedMonitors.push_back(monitor);
}
}