mirror of
https://gitlab.freedesktop.org/wayland/wayland-protocols.git
synced 2025-12-20 15:10:07 +01:00
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:
parent
0c79b5c96f
commit
efbc060534
1 changed files with 1 additions and 1 deletions
|
|
@ -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>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue