fix for screens adding up
This commit is contained in:
parent
bfd61a65a0
commit
50f8bf2d18
1 changed files with 3 additions and 2 deletions
|
@ -46,9 +46,10 @@ public class SWDefinition {
|
||||||
|
|
||||||
|
|
||||||
SWDefinition() {
|
SWDefinition() {
|
||||||
// List all the screens here
|
// Don't allow for screens to add up
|
||||||
if(screens.size() >0)
|
if(screens.size() >0)
|
||||||
return;
|
screens = new ArrayList<>();
|
||||||
|
// List all the screens here
|
||||||
add(new SWScreen(R.string.nav_setupwizard)
|
add(new SWScreen(R.string.nav_setupwizard)
|
||||||
.add(new SWInfotext()
|
.add(new SWInfotext()
|
||||||
.label(R.string.welcometosetupwizard) )
|
.label(R.string.welcometosetupwizard) )
|
||||||
|
|
Loading…
Reference in a new issue