diff --git a/Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/navigation/locationreferences/LocationReferencesProvider.java b/Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/navigation/locationreferences/LocationReferencesProvider.java index 25e2c74eea..34ffcb2d1c 100644 --- a/Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/navigation/locationreferences/LocationReferencesProvider.java +++ b/Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/navigation/locationreferences/LocationReferencesProvider.java @@ -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()); } //==================================================================================================