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

Commit 8d5a56d7 authored by Ioana Alexandru's avatar Ioana Alexandru
Browse files

Fix resource linking for EnableZenModeDialog

This is only an issue with our internal sysui-studio build, but there's an easy fix for it that doesn't affect the main build.

Change-Id: Ia49ee8538e8b7a6b62b5fedd3eb641f4cb737d17
Fix: 355192329
Test: tested manually
Flag: EXEMPT trivial change
parent 66102a07
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -159,9 +159,9 @@ public class EnableZenModeDialog {
                        });

        if (mCancelIsNeutral) {
            builder.setNeutralButton(R.string.cancel, null);
            builder.setNeutralButton(android.R.string.cancel, null);
        } else {
            builder.setNegativeButton(R.string.cancel, null);
            builder.setNegativeButton(android.R.string.cancel, null);
        }

        View contentView = getContentView();