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

Commit 762c6d25 authored by Steve Kondik's avatar Steve Kondik Committed by Gerrit Code Review
Browse files

Merge "Fix Notifications so you can't try and test a color if it's set to none...

Merge "Fix Notifications so you can't try and test a color if it's set to none (Which is the default setting)."
parents 4a3a8b19 7ff1a180
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -206,7 +206,7 @@ public class TrackballNotificationActivity extends PreferenceActivity implements
        final int mAlwaysPulse = Settings.System.getInt(getContentResolver(),
                                 Settings.System.TRACKBALL_SCREEN_ON, 0);
        String[] mTestPackage = findPackage(pkg);
        if (mTestPackage == null) {
        if (mTestPackage == null || mTestPackage[1].equals("none")) {
            return;
        }
        final Notification notification = new Notification();