mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
Fix overlapping FloatingViewType IntDef
TYPE_DISCOVERY_BOUNCE and TYPE_QUICKSTEP_PREVIEW have the same value. Make sure each flag has a unique value. Test: manual Change-Id: I0fec3f27ffc31bad80d3af7b3baa3631b61b2567
This commit is contained in:
committed by
Edward Savage-Jones
parent
90a54e7375
commit
1e63367b94
@@ -68,9 +68,9 @@ public abstract class AbstractFloatingView extends LinearLayout implements Touch
|
||||
public static final int TYPE_DISCOVERY_BOUNCE = 1 << 6;
|
||||
|
||||
// Popups related to quickstep UI
|
||||
public static final int TYPE_QUICKSTEP_PREVIEW = 1 << 6;
|
||||
public static final int TYPE_TASK_MENU = 1 << 7;
|
||||
public static final int TYPE_OPTIONS_POPUP = 1 << 8;
|
||||
public static final int TYPE_QUICKSTEP_PREVIEW = 1 << 7;
|
||||
public static final int TYPE_TASK_MENU = 1 << 8;
|
||||
public static final int TYPE_OPTIONS_POPUP = 1 << 9;
|
||||
|
||||
public static final int TYPE_ALL = TYPE_FOLDER | TYPE_ACTION_POPUP
|
||||
| TYPE_WIDGETS_BOTTOM_SHEET | TYPE_WIDGET_RESIZE_FRAME | TYPE_WIDGETS_FULL_SHEET
|
||||
|
||||
Reference in New Issue
Block a user