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

Commit 34bd98df authored by Steve Kondik's avatar Steve Kondik Committed by Gerrit Code Review
Browse files

Merge "Fix long click intent for Wimax notification pulldown / power widget" into ics

parents f75563d3 e98ce3c0
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -136,7 +136,8 @@ public class WimaxButton extends PowerButton {

    @Override
    protected boolean handleLongClick() {
        Intent intent = new Intent("android.settings.WIMAX_SETTINGS");
        Intent intent = new Intent("android.intent.action.MAIN");
        intent.setClassName("com.android.settings.wimax", "com.android.settings.wimax.WimaxSettings");
        intent.addCategory(Intent.CATEGORY_DEFAULT);
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        mView.getContext().startActivity(intent);