[mutter/gnome-3-36] clutter/paint-context: Fix NO_PAINT_SIGNAL flag enum value
- From: Georges Basile Stavracas Neto <gbsneto src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter/gnome-3-36] clutter/paint-context: Fix NO_PAINT_SIGNAL flag enum value
- Date: Wed, 17 Jun 2020 19:32:20 +0000 (UTC)
commit f25417efcf4ade045f160a6a19fe335b7b97f3fc
Author: Sebastian Keller <skeller gnome org>
Date: Wed Jun 17 17:18:40 2020 +0200
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
clutter/clutter/clutter-paint-context-private.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/clutter/clutter/clutter-paint-context-private.h b/clutter/clutter/clutter-paint-context-private.h
index 132238cb9b..598f8e1aca 100644
--- a/clutter/clutter/clutter-paint-context-private.h
+++ b/clutter/clutter/clutter-paint-context-private.h
@@ -24,7 +24,7 @@ typedef enum _ClutterPaintFlag
{
CLUTTER_PAINT_FLAG_NONE = 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;
ClutterPaintContext * clutter_paint_context_new_for_view (ClutterStageView *view,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]