Skip to content

Commit

Permalink
Merge pull request #4676 from Tyriar/4097_2
Browse files Browse the repository at this point in the history
Remove redundant condition
  • Loading branch information
Tyriar committed Aug 14, 2023
2 parents 7ae6feb + 09fc798 commit 2437b68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/browser/renderer/dom/DomRendererRowFactory.ts
Expand Up @@ -431,7 +431,7 @@ export class DomRendererRowFactory {
}

// exclude conditions for cell merging - never merge these
if (!isCursorCell && !isJoined && !isDecorated && isInSelection === oldIsInSelection) {
if (!isCursorCell && !isJoined && !isDecorated) {
cellAmount++;
} else {
charElement.textContent = text;
Expand Down

0 comments on commit 2437b68

Please sign in to comment.