1
0
mirror of https://github.com/brl/mutter.git synced 2025-04-06 10:23:48 +00:00

clutter/paint-context: Fix NO_PAINT_SIGNAL flag enum value

This flag was using the same value as the NO_CURSORS flag.

https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1321
This commit is contained in:
Sebastian Keller 2020-06-17 17:18:40 +02:00
parent ecc2b91016
commit f25417efcf

@ -24,7 +24,7 @@ typedef enum _ClutterPaintFlag
{ {
CLUTTER_PAINT_FLAG_NONE = 0, CLUTTER_PAINT_FLAG_NONE = 0,
CLUTTER_PAINT_FLAG_NO_CURSORS = 1 << 0, CLUTTER_PAINT_FLAG_NO_CURSORS = 1 << 0,
CLUTTER_PAINT_FLAG_NO_PAINT_SIGNAL = 1 << 0, CLUTTER_PAINT_FLAG_NO_PAINT_SIGNAL = 1 << 1,
} ClutterPaintFlag; } ClutterPaintFlag;
ClutterPaintContext * clutter_paint_context_new_for_view (ClutterStageView *view, ClutterPaintContext * clutter_paint_context_new_for_view (ClutterStageView *view,