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

Commit b26c104b authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Ensure OK/Cancel buttons always shown" into rvc-qpr-dev

parents c58d6f66 d8409498
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -343,17 +343,19 @@ public class PackageInstallerActivity extends AlertActivity {
        if (!wasSetUp) {
            return;
        }
    }

    @Override
    protected void onResume() {
        super.onResume();

        if (mAppSnippet != null) {
            // load dummy layout with OK button disabled until we override this layout in
            // startInstallConfirm
            bindUi();
            checkIfAllowedAndInitiateInstall();
        }

    @Override
    protected void onResume() {
        super.onResume();

        if (mOk != null) {
            mOk.setEnabled(mEnableOk);
        }