mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GP-0: Adjust default sort order of breakpoint tables.
This commit is contained in:
parent
0a5f411023
commit
ebf561e28b
1 changed files with 4 additions and 2 deletions
|
@ -140,7 +140,8 @@ public class DebuggerBreakpointsProvider extends ComponentProviderAdapter
|
|||
|
||||
@Override
|
||||
public List<LogicalBreakpointTableColumns> defaultSortOrder() {
|
||||
return List.of(LogicalBreakpointTableColumns.ADDRESS);
|
||||
return List.of(LogicalBreakpointTableColumns.IMAGE,
|
||||
LogicalBreakpointTableColumns.ADDRESS, LogicalBreakpointTableColumns.NAME);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -217,7 +218,8 @@ public class DebuggerBreakpointsProvider extends ComponentProviderAdapter
|
|||
|
||||
@Override
|
||||
public List<BreakpointLocationTableColumns> defaultSortOrder() {
|
||||
return List.of(BreakpointLocationTableColumns.ADDRESS);
|
||||
return List.of(BreakpointLocationTableColumns.ADDRESS,
|
||||
BreakpointLocationTableColumns.NAME);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue