Skip to content

shell/blur-effect: Set float brightness property

The brightness property of ShellBlurEffect is of float type, but we are calling g_value_set_int() in the GObject::get_property() handler, which throws warnings when trying to set the property via g_object_set() and family.

Use g_value_set_float() instead.

Merge request reports