Markers can now be removed using the M key (in the replay)

This commit is contained in:
CrushedPixel
2015-06-09 23:20:47 +02:00
parent d891436427
commit 0390533f9b
2 changed files with 8 additions and 5 deletions

View File

@@ -127,7 +127,7 @@ public class KeyInputHandler {
//Custom registered handlers
if(kb.getKeyDescription().equals(KeybindRegistry.KEY_ADD_MARKER) && (kb.isPressed() || kb.getKeyCode() == keyCode)) {
if(ReplayHandler.isInReplay()) {
ReplayHandler.addMarker();
ReplayHandler.toggleMarker();
} else if(ConnectionEventHandler.isRecording()) {
ConnectionEventHandler.addMarker();
}