mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GT-2846, 2847 - Decompiler - test fixes
This commit is contained in:
parent
1287e4c807
commit
56227f2fb2
6 changed files with 152 additions and 45 deletions
|
@ -764,8 +764,14 @@ public class FieldPanel extends JPanel
|
|||
* cursor if cursor is offscreen.
|
||||
*/
|
||||
public void goTo(BigInteger index, int fieldNum, int row, int col, boolean alwaysCenterCursor) {
|
||||
goTo(index, fieldNum, row, col, alwaysCenterCursor, EventTrigger.API_CALL);
|
||||
}
|
||||
|
||||
if (!cursorHandler.doSetCursorPosition(index, fieldNum, row, col, EventTrigger.API_CALL)) {
|
||||
// for subclasses to control the event trigger
|
||||
protected void goTo(BigInteger index, int fieldNum, int row, int col,
|
||||
boolean alwaysCenterCursor, EventTrigger trigger) {
|
||||
|
||||
if (!cursorHandler.doSetCursorPosition(index, fieldNum, row, col, trigger)) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue