Merge "App Shortcut menu bug fixes and polish." into sc-dev am: c846245f1b

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/14985072

Change-Id: Icba377c0032eee2dacec8a3c4364fa5b958880b7
This commit is contained in:
Jonathan Miranda
2021-06-16 18:19:16 +00:00
committed by Automerger Merge Worker
8 changed files with 87 additions and 23 deletions

View File

@@ -415,8 +415,8 @@ public abstract class BaseQuickstepLauncher extends Launcher
@Override
public Stream<SystemShortcut.Factory> getSupportedShortcuts() {
return Stream.concat(super.getSupportedShortcuts(),
Stream.of(WellbeingModel.SHORTCUT_FACTORY));
return Stream.concat(Stream.of(WellbeingModel.SHORTCUT_FACTORY),
super.getSupportedShortcuts());
}
@Override