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

Commit 069dffdf authored by Daniel Sandler's avatar Daniel Sandler
Browse files

Quick fix for status bar crash.

Bug: 3147743
Change-Id: I0fb06b04f234b9d34349f65fede8f74b24eae988
parent 7b9652b6
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -127,7 +127,9 @@ public class InputMethodButton extends ImageView {
    }

    private void postRefreshStatusIcon() {
        getHandler().post(new Runnable() {
        Handler h = getHandler();
        if (h == null) return;
        h.post(new Runnable() {
            public void run() {
                refreshStatusIcon(mKeyboardShown);
            }