master
Javier Varona 2018-09-19 21:47:51 -04:00
commit d549e3af8d
1 changed files with 10 additions and 4 deletions

View File

@ -23,6 +23,8 @@ import cy.agorise.crystalwallet.views.natives.CustomTextInputEditText
import kotlinx.android.synthetic.main.create_seed.* import kotlinx.android.synthetic.main.create_seed.*
/* /*
* This activity creates a new account with some security concerns * This activity creates a new account with some security concerns
* */ * */
@ -283,15 +285,19 @@ class CreateSeedActivity : CustomActivity() {
* Enable create button * Enable create button
* */ * */
private fun enableCreate() { private fun enableCreate() {
btnCreate?.setEnabled(true) runOnUiThread(Runnable {
btnCreate?.setBackgroundColor(resources.getColor(R.color.colorPrimary)) btnCreate?.setBackgroundColor(resources.getColor(R.color.colorPrimary))
btnCreate?.setEnabled(true)
})
} }
/* /*
* Disable create button * Disable create button
* */ * */
private fun disableCreate() { private fun disableCreate() {
btnCreate?.setEnabled(false) runOnUiThread(Runnable {
btnCreate?.setBackground(resources.getDrawable(R.drawable.disable_style)) btnCreate?.setEnabled(false)
btnCreate?.setBackground(resources.getDrawable(R.drawable.disable_style))
})
} }
} }