mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
fix indentation issue
This commit is contained in:
parent
414bef0ce1
commit
0a3b1c6b49
1 changed files with 5 additions and 3 deletions
|
@ -1433,9 +1433,11 @@ public class FieldPanel extends JPanel
|
|||
// horizontal scroll (only move viewport)
|
||||
if (viewport != null) {
|
||||
Point pos = viewport.getViewPosition();
|
||||
viewport.setViewPosition(new Point(Math.max(0, pos.x + scrollAmount), pos.y));
|
||||
viewport.setViewPosition(
|
||||
new Point(Math.max(0, pos.x + scrollAmount), pos.y));
|
||||
}
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
scrollView(scrollAmount);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue