GT-3513 - Fixed Location References Provider's 'Make Selection' toolbar

action
This commit is contained in:
dragonmacher 2020-01-31 17:18:35 -05:00
parent 16f050f901
commit 54e33e60e0

View file

@ -398,12 +398,7 @@ public class LocationReferencesProvider extends ComponentProviderAdapter
@Override
public ActionContext getActionContext(MouseEvent event) {
if (event != null) {
if (referencesPanel.selectRow(event)) {
return new ActionContext(this, referencesPanel.getTable());
}
}
return null;
return new ActionContext(this, referencesPanel.getTable());
}
//==================================================================================================