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

Commit b216dd51 authored by Lucas Dupin's avatar Lucas Dupin Committed by android-build-merger
Browse files

Merge "Fix dark mode NPE" into qt-dev am: b9cd46e1

am: 3d511031

Change-Id: I6dde6e2973f7d5e3bec09a7b0233674431d25359
parents 720043c0 3d511031
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -438,7 +438,7 @@ public class GlobalActionsDialog implements DialogInterface.OnDismissListener,
    @Override
    public void onUiModeChanged() {
        mContext.getTheme().applyStyle(mContext.getThemeResId(), true);
        if (mDialog.isShowing()) {
        if (mDialog != null && mDialog.isShowing()) {
            mDialog.refreshDialog();
        }
    }