This commit is contained in:
Ondřej Hruška
2014-04-09 22:51:29 +02:00
parent 7d61de7c61
commit f81c349d20
59 changed files with 719 additions and 38 deletions
+3 -3
View File
@@ -110,7 +110,7 @@ public class App extends BaseApp {
@Override
protected void initKeystrokes(InputSystem input)
protected void initInputSystem(InputSystem input)
{
// Go fullscreen
getInput().bindKeyStroke(new KeyStroke(Keys.KEY_F11), new Runnable() {
@@ -177,9 +177,9 @@ public class App extends BaseApp {
@Override
protected void initChannels(EventBus bus)
protected void initBus(EventBus bus)
{
super.initChannels(bus);
super.initBus(bus);
// custom channels
bus.addChannel(ActionRequest.class, ActionRequest.Listener.class);