Move no thanks from dialogs

This commit is contained in:
topjohnwu 2019-07-28 03:54:46 -07:00
parent b16f696b0e
commit b2e6ba3c4a

View File

@ -111,7 +111,6 @@ class ReposFragment : MagiskFragment<ModuleViewModel, FragmentReposBinding>(),
.setCancelable(true) .setCancelable(true)
.setPositiveButton(R.string.install) { _, _ -> download(true) } .setPositiveButton(R.string.install) { _, _ -> download(true) }
.setNeutralButton(R.string.download) { _, _ -> download(false) } .setNeutralButton(R.string.download) { _, _ -> download(false) }
.setNegativeButton(R.string.no_thanks, null)
.show() .show()
} }
} }