GT-3353 - Key bindings menu action log trace fix

This commit is contained in:
dragonmacher 2019-11-27 10:56:54 -05:00
parent 8e4b143f58
commit b982a48969

View File

@ -96,6 +96,11 @@ class ShowComponentAction extends DockingAction
* @param provider the provider
*/
private void synchronizeKeyBinding(ComponentProvider provider) {
if (!getKeyBindingType().supportsKeyBindings()) {
return;
}
DockingActionIf action = provider.getShowProviderAction();
KeyBindingData defaultBinding = action.getDefaultKeyBindingData();
setKeyBindingData(defaultBinding);