SetupWizard: fix button visibility

This commit is contained in:
Milos Kozak 2023-10-27 12:29:04 +02:00
parent e33a66b65e
commit 3c2991dd28

View file

@ -9,7 +9,7 @@ class SWButton(injector: HasAndroidInjector) : SWItem(injector, Type.BUTTON) {
private var buttonRunnable: Runnable? = null
private var buttonText = 0
private var buttonValidator: (() -> Boolean)? = { false }
private var buttonValidator: (() -> Boolean)? = null
private var button: Button? = null
fun text(buttonText: Int): SWButton {