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

Commit db08925a authored by Alan Viverette's avatar Alan Viverette
Browse files

Fix build

Change-Id: I3e1708a9e41155b9b00e0365e4392ae66202fdbb
parent 4f7b035e
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -61,9 +61,6 @@ final class CascadingMenuPopup extends MenuPopup implements MenuPresenter, OnKey
     */
     */
    private static final int SUBMENU_TIMEOUT_MS = 200;
    private static final int SUBMENU_TIMEOUT_MS = 200;


    /** List of menus that were added before this popup was shown. */
    private final LinkedList<MenuBuilder> mPendingMenus = new LinkedList<MenuBuilder>;

    private final Context mContext;
    private final Context mContext;
    private final int mMenuMaxWidth;
    private final int mMenuMaxWidth;
    private final int mPopupStyleAttr;
    private final int mPopupStyleAttr;
@@ -71,6 +68,9 @@ final class CascadingMenuPopup extends MenuPopup implements MenuPresenter, OnKey
    private final boolean mOverflowOnly;
    private final boolean mOverflowOnly;
    private final Handler mSubMenuHoverHandler;
    private final Handler mSubMenuHoverHandler;


    /** List of menus that were added before this popup was shown. */
    private final List<MenuBuilder> mPendingMenus = new LinkedList<>();

    /**
    /**
     * List of open menus. The first item is the root menu and each
     * List of open menus. The first item is the root menu and each
     * subsequent item is a direct submenu of the previous item.
     * subsequent item is a direct submenu of the previous item.