Skip to content

Commit

Permalink
fixes #24308
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed Apr 27, 2017
1 parent 350be19 commit 94d882b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/parts/debug/common/debugModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,7 @@ export class Model implements IModel {
if (previousOutput instanceof OutputElement && severity === previousOutput.severity && toAdd.length) {
previousOutput.value += toAdd.shift().value;
}
if (previousOutput && previousOutput.value === '') {
if (previousOutput && previousOutput.value === '' && previousOutput.severity !== severity) {
// remove potential empty lines between different output types
this.replElements.pop();
}
Expand Down

0 comments on commit 94d882b

Please sign in to comment.