mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-18 05:06:39 +01:00
@@ -447,6 +447,9 @@ export class BreakpointsView extends AdaptiveCollapsibleViewletView {
|
||||
if (first.uri.toString() !== second.uri.toString()) {
|
||||
return paths.basename(first.uri.fsPath).localeCompare(paths.basename(second.uri.fsPath));
|
||||
}
|
||||
if (first.lineNumber === second.lineNumber) {
|
||||
return first.column - second.column;
|
||||
}
|
||||
|
||||
return first.lineNumber - second.lineNumber;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user