From 85c0602f942cfb97bf35cb66cc4b6a1df4ca02f0 Mon Sep 17 00:00:00 2001 From: Peter Slattery Date: Sat, 2 Nov 2019 10:36:09 -0700 Subject: [PATCH] Removed opening the node lister from the default command registry --- src/foldhaus_app.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/foldhaus_app.cpp b/src/foldhaus_app.cpp index 431a01b..0366745 100644 --- a/src/foldhaus_app.cpp +++ b/src/foldhaus_app.cpp @@ -347,7 +347,6 @@ RELOAD_STATIC_DATA(ReloadStaticData) RegisterKeyPressCommand(&State->DefaultInputCommandRegistry, KeyCode_MouseLeftButton, Command_Began, KeyCode_Invalid, Begin3DViewMouseRotate); RegisterKeyPressCommand(&State->DefaultInputCommandRegistry, KeyCode_U, Command_Began, KeyCode_Invalid, OpenUniverseView); - RegisterKeyPressCommand(&State->DefaultInputCommandRegistry, KeyCode_A, Command_Began, KeyCode_Invalid, OpenNodeLister); RegisterKeyPressCommand(&State->DefaultInputCommandRegistry, KeyCode_Tab, Command_Began, KeyCode_Invalid, OpenNodeView); } }