Fixed Typo

This commit is contained in:
Maximilian P. Käfer 2020-08-30 19:45:51 +02:00
parent dc58290f22
commit 4137bf393a
2 changed files with 2 additions and 2 deletions

View File

@ -197,7 +197,7 @@ public final class ChatScene implements Restorable {
}); });
//Listen to backEvents //Listen to backEvents
eventBus.register(BackEvent.class, e -> tabPane.getSelectionModel().select(Tabs.CONTANCT_LIST)); eventBus.register(BackEvent.class, e -> tabPane.getSelectionModel().select(Tabs.CONTACT_LIST));
// Listen to received messages // Listen to received messages
eventBus.register(MessageCreationEvent.class, e -> { eventBus.register(MessageCreationEvent.class, e -> {

View File

@ -11,7 +11,7 @@ package envoy.constant;
public class Tabs { public class Tabs {
private Tabs() {} private Tabs() {}
public static int CONTANCT_LIST = 0; public static int CONTACT_LIST = 0;
public static int CONTACT_SEARCH = 1; public static int CONTACT_SEARCH = 1;
public static int GROUP_CREATION = 2; public static int GROUP_CREATION = 2;
} }