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

Commit e463c745 authored by Jason Monk's avatar Jason Monk
Browse files

Don't show IME Switcher not. if nav bar exists

Since the navigation bar now has IME switcher icon no need for a
notification about it when it is present.

Bug: 14257632
Change-Id: I5511fee0dee45475d5b7949f63696b1d29acf9cc
parent f1ff2095
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1548,7 +1548,8 @@ public class InputMethodManagerService extends IInputMethodManager.Stub

                    mImeSwitcherNotification.setLatestEventInfo(
                            mContext, title, summary, mImeSwitchPendingIntent);
                    if (mNotificationManager != null) {
                    if ((mNotificationManager != null)
                            && !mWindowManagerService.hasNavigationBar()) {
                        if (DEBUG) {
                            Slog.d(TAG, "--- show notification: label =  " + summary);
                        }