mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GT-3161 - Function Graph - fixed 3 bugs that caused some edges to get
clipped by vertices
This commit is contained in:
parent
c10939cb63
commit
99ded59e84
2 changed files with 26 additions and 16 deletions
|
@ -103,10 +103,10 @@ public class LayoutLocationMap<V, E> {
|
|||
Column column = null;
|
||||
Collection<Column> values = columnsByIndex.values();
|
||||
for (Column nextColumn : values) {
|
||||
column = nextColumn;
|
||||
if (x < column.x) {
|
||||
if (x < nextColumn.x) {
|
||||
return column;
|
||||
}
|
||||
column = nextColumn;
|
||||
}
|
||||
return column;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue