Skip to content

Commit

Permalink
fixes #85514
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed Nov 27, 2019
1 parent 0e0fea0 commit 4766da6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/debug/common/debugModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1074,7 +1074,7 @@ export class DebugModel implements IDebugModel {
if (first.column && second.column) {
return first.column - second.column;
}
return -1;
return 1;
}

return first.lineNumber - second.lineNumber;
Expand Down

0 comments on commit 4766da6

Please sign in to comment.