staging/ext-background-effect: fix capability value for blur

The value was zero because the enum was not a bitfield at some point when the protocol was
developed and I forgot to change the value to one when making it a bitfield.

This is technically a breaking change, but as the client could never receive the blur
capability before this commit, it won't actually break anything - it was already broken.

Signed-off-by: Xaver Hugl <xaver.hugl@kde.org>
This commit is contained in:
Xaver Hugl 2025-06-25 15:46:15 +02:00
parent 0c79b5c96f
commit efbc060534

View file

@ -55,7 +55,7 @@
</enum> </enum>
<enum name="capability" bitfield="true"> <enum name="capability" bitfield="true">
<entry name="blur" value="0" <entry name="blur" value="1"
summary="the compositor supports applying blur"/> summary="the compositor supports applying blur"/>
</enum> </enum>