update animated deco values after setprop

This commit is contained in:
vaxerski 2023-01-24 23:52:00 +00:00
parent da23ec847e
commit 12e293e309

View file

@ -901,6 +901,8 @@ std::string dispatchSetProp(std::string request) {
} }
} catch (std::exception& e) { return "error in parsing prop value: " + std::string(e.what()); } } catch (std::exception& e) { return "error in parsing prop value: " + std::string(e.what()); }
g_pCompositor->updateAllWindowsAnimatedDecorationValues();
return "ok"; return "ok";
} }