Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e4425124 authored by Mario Bertschler's avatar Mario Bertschler
Browse files

Setting AppInfo.itemType to ITEM_TYPE_APPLICATION per default

It's wrongly set to ITEM_TYPE_SHORTCUT, changing it to ITEM_TYPE_APPLICATION
in the constructor.

Change-Id: I51383d09d50ac90cea15fce816503648d2cb690e
parent 0402efba
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ public class AppInfo extends ItemInfoWithIcon {
    public int isDisabled = ShortcutInfo.DEFAULT;

    public AppInfo() {
        itemType = LauncherSettings.BaseLauncherColumns.ITEM_TYPE_SHORTCUT;
        itemType = LauncherSettings.Favorites.ITEM_TYPE_APPLICATION;
    }

    @Override