mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
GP-771 - fixed regression that caused table header popup to stop working
This commit is contained in:
parent
f2e702d1b2
commit
b929183180
1 changed files with 8 additions and 4 deletions
|
@ -151,6 +151,10 @@ public class DockableComponent extends JPanel implements ContainerListener {
|
|||
}
|
||||
|
||||
private void showContextMenu(MouseEvent e) {
|
||||
if (e.isConsumed()) {
|
||||
return;
|
||||
}
|
||||
|
||||
Component component = e.getComponent();
|
||||
if (component == null) {
|
||||
return; // not sure this can happen
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue