mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-01-31 13:31:08 +00:00
GP-2564 corrected improper -1 subOpIndex for Reference dialog operand
selection
This commit is contained in:
parent
09d326ddbb
commit
ebf686d26b
@ -432,7 +432,7 @@ class InstructionPanel extends JPanel implements ChangeListener {
|
||||
public void mousePressed(MouseEvent e) {
|
||||
if (!locked) {
|
||||
JLabel label = (JLabel) e.getSource();
|
||||
updateLabels(getLabelIndex(label), -1);
|
||||
updateLabels(getLabelIndex(label), 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user