Reintroduce action menus that were accidentally removed

This commit is contained in:
Peter Cai 2022-08-01 18:44:37 -04:00
parent 64c412c38d
commit ec064f3410
2 changed files with 4 additions and 0 deletions

View File

@ -57,6 +57,8 @@ class ProfileDownloadFragment : DialogFragment(), EuiccFragmentMarker, Toolbar.O
profileDownloadCode = view.findViewById(R.id.profile_download_code)
progress = view.findViewById(R.id.progress)
toolbar.inflateMenu(R.menu.fragment_profile_download)
return view
}

View File

@ -52,6 +52,8 @@ class ProfileRenameFragment : DialogFragment(), EuiccFragmentMarker {
profileRenameNewName = view.findViewById(R.id.profile_rename_new_name)
progress = view.findViewById(R.id.progress)
toolbar.inflateMenu(R.menu.fragment_profile_rename)
return view
}