Skip to content

Commit

Permalink
Merge pull request xtermjs#2003 from Tyriar/fix_merge_problem
Browse files Browse the repository at this point in the history
Fix compile error from conflicting PRs
  • Loading branch information
Tyriar authored Apr 7, 2019
2 parents e58033b + 74b68ac commit 2574577
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/dom/DomRendererRowFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class DomRendererRowFactory {
charElement.classList.add(ITALIC_CLASS);
}

if (flags & FLAGS.DIM) {
if (this._workCell.isDim()) {
charElement.classList.add(DIM_CLASS);
}

Expand Down

0 comments on commit 2574577

Please sign in to comment.