Loading src/com/android/launcher3/allapps/BaseAllAppsAdapter.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -119,7 +119,7 @@ public abstract class BaseAllAppsAdapter<T extends Context & ActivityContext> ex * Returns true if the items represent the same object * Returns true if the items represent the same object */ */ public boolean isSameAs(AdapterItem other) { public boolean isSameAs(AdapterItem other) { return (other.viewType != viewType) && (other.getClass() == getClass()); return (other.viewType == viewType) && (other.getClass() == getClass()); } } /** /** Loading Loading
src/com/android/launcher3/allapps/BaseAllAppsAdapter.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -119,7 +119,7 @@ public abstract class BaseAllAppsAdapter<T extends Context & ActivityContext> ex * Returns true if the items represent the same object * Returns true if the items represent the same object */ */ public boolean isSameAs(AdapterItem other) { public boolean isSameAs(AdapterItem other) { return (other.viewType != viewType) && (other.getClass() == getClass()); return (other.viewType == viewType) && (other.getClass() == getClass()); } } /** /** Loading