|
|
@@ -38,7 +38,7 @@ public class SignUpViewModel extends ViewModel {
|
|
|
void onEvent(int eventId, int intValue, @Nullable String stringValue) {
|
|
|
switch (eventId) {
|
|
|
case Event.BACK:
|
|
|
- exitTo(ScreenID.LOGIN);
|
|
|
+ exitTo(ScreenID.MAIN);
|
|
|
break;
|
|
|
default:
|
|
|
break;
|
|
|
@@ -48,7 +48,7 @@ public class SignUpViewModel extends ViewModel {
|
|
|
@Override
|
|
|
public void exitTo(int id) {
|
|
|
switch (id) {
|
|
|
- case ScreenID.LOGIN:
|
|
|
+ case ScreenID.MAIN:
|
|
|
screenChanger.changeToBack(id);
|
|
|
break;
|
|
|
default:
|
|
|
@@ -58,7 +58,7 @@ public class SignUpViewModel extends ViewModel {
|
|
|
|
|
|
@Override
|
|
|
public void exitByBackKey() {
|
|
|
- exitTo(ScreenID.LOGIN);
|
|
|
+ exitTo(ScreenID.MAIN);
|
|
|
}
|
|
|
|
|
|
/**
|