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

Commit 7e350ef0 authored by Steve Kondik's avatar Steve Kondik
Browse files

Revert "systemui: Fix recent apps on tablets"

This reverts commit 96ea9778.

Google fixed it, let's use their fix instead.
parent 7b69c9b2
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -198,7 +198,6 @@ public class RecentsPanelView extends RelativeLayout implements OnItemClickListe
            } else {
                if (noApps) {
                    if (DEBUG) Log.v(TAG, "Nothing to show");
                    mRecentTasksDirty = true;
                    return;
                }
            }
+5 −1
Original line number Diff line number Diff line
@@ -1262,7 +1262,11 @@ public class TabletStatusBar extends StatusBar implements
    public void onClickRecentButton() {
        if (DEBUG) Slog.d(TAG, "clicked recent apps; disabled=" + mDisabled);
        if ((mDisabled & StatusBarManager.DISABLE_EXPAND) == 0) {
            toggleRecentApps();
            int msg = (mRecentsPanel.getVisibility() == View.GONE)
                ? MSG_OPEN_RECENTS_PANEL
                : MSG_CLOSE_RECENTS_PANEL;
            mHandler.removeMessages(msg);
            mHandler.sendEmptyMessage(msg);
        }
    }