We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f842b84 commit 1d02292Copy full SHA for 1d02292
src/wayland/hyprland/ipc/hyprland_toplevel.cpp
@@ -69,6 +69,7 @@ void HyprlandToplevel::updateFromObject(const QVariantMap& object) {
69
auto addressStr = object.value("address").value<QString>();
70
auto title = object.value("title").value<QString>();
71
72
+ Qt::beginPropertyUpdateGroup();
73
bool ok = false;
74
auto address = addressStr.toULongLong(&ok, 16);
75
if (!ok || !address) {
@@ -85,6 +86,8 @@ void HyprlandToplevel::updateFromObject(const QVariantMap& object) {
85
86
if (!workspace) return;
87
88
this->setWorkspace(workspace);
89
+ this->bLastIpcObject = object;
90
+ Qt::endPropertyUpdateGroup();
91
}
92
93
void HyprlandToplevel::setWorkspace(HyprlandWorkspace* workspace) {
0 commit comments