Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/main/java/net/sf/jabref/JabRefPreferences.java
Original file line number Diff line number Diff line change
Expand Up @@ -885,10 +885,9 @@ public KeyStroke getKey(String bindName) {
// So, if this happens, we add the default value to the current
// hashmap, so this doesn't happen again, and so this binding
// will appear in the KeyBindingsDialog.
keyBinds.put(bindName, s);
}
if (s == null) {
Globals.logger("Could not get key binding for \"" + bindName + "\"");
s = "Not associated"; // if the item of menu not in defKeyBind list
keyBinds.put(bindName, s);
}

if (Globals.ON_MAC) {
Expand Down