From 91ed72f80134a8257f677593c4c0f9645b682da7 Mon Sep 17 00:00:00 2001 From: MrSluffy Date: Mon, 16 Dec 2024 13:54:43 +0800 Subject: [PATCH] fix const value in bitwise shift for TYPE_COMPOSE_VIEW --- src/com/android/launcher3/AbstractFloatingView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/launcher3/AbstractFloatingView.java b/src/com/android/launcher3/AbstractFloatingView.java index 851b4709b3..f45abcc1cc 100644 --- a/src/com/android/launcher3/AbstractFloatingView.java +++ b/src/com/android/launcher3/AbstractFloatingView.java @@ -106,7 +106,7 @@ public abstract class AbstractFloatingView extends LinearLayout implements Touch public static final int TYPE_PIN_IME_POPUP = 1 << 22; // Custom compose popups - public static final int TYPE_COMPOSE_VIEW = 1 << 22; + public static final int TYPE_COMPOSE_VIEW = 1 << 23; public static final int TYPE_ALL = TYPE_FOLDER | TYPE_ACTION_POPUP | TYPE_WIDGETS_BOTTOM_SHEET | TYPE_WIDGET_RESIZE_FRAME | TYPE_WIDGETS_FULL_SHEET