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

Commit 5bdddbd9 authored by Geoffrey Pitsch's avatar Geoffrey Pitsch
Browse files

Reduce toast duration for channel warnings.

Test: manual
Fixes: 38380608
Change-Id: Ia91dae29362bf59b6bf8927d195bacf4a2eb36cb
parent 906948e7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3287,7 +3287,7 @@ public class NotificationManagerService extends SystemService {
                Settings.Global.SHOW_NOTIFICATION_CHANNEL_WARNINGS, defaultWarningEnabled) != 0;
        if (warningEnabled) {
            Toast toast = Toast.makeText(getContext(), mHandler.getLooper(), toastText,
                    Toast.LENGTH_LONG);
                    Toast.LENGTH_SHORT);
            toast.show();
        }
    }