GP-0: Adjust default sort order of breakpoint tables.

This commit is contained in:
Dan 2022-04-28 15:30:50 -04:00
parent 0a5f411023
commit ebf561e28b

View file

@ -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);
}
}