From 63a29c7ed57ae27175e6e60aa355da31505c717b Mon Sep 17 00:00:00 2001 From: enhulsman Date: Wed, 25 Feb 2026 16:28:02 +0100 Subject: [PATCH] Fix syncRoundness using wrong rounding source --- modules/services/HyprlandConfig.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/HyprlandConfig.qml b/modules/services/HyprlandConfig.qml index 8ca98ab5..ff1af308 100644 --- a/modules/services/HyprlandConfig.qml +++ b/modules/services/HyprlandConfig.qml @@ -140,7 +140,7 @@ QtObject { batchCommand += ` ; keyword general:col.active_border ${activeColorFormatted}`; batchCommand += ` ; keyword general:col.inactive_border ${inactiveColorFormatted}`; batchCommand += ` ; keyword general:layout ${GlobalStates.hyprlandLayout}`; - batchCommand += ` ; keyword decoration:rounding ${Config.hyprland.rounding}`; + batchCommand += ` ; keyword decoration:rounding ${Config.hyprlandRounding}`; batchCommand += ` ; keyword decoration:shadow:enabled ${Config.hyprland.shadowEnabled}`; batchCommand += ` ; keyword decoration:shadow:range ${Config.hyprland.shadowRange}`; batchCommand += ` ; keyword decoration:shadow:render_power ${Config.hyprland.shadowRenderPower}`;