We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f0a7ee commit 957e3e0Copy full SHA for 957e3e0
src/browser/renderer/dom/DomRendererRowFactory.ts
@@ -166,11 +166,11 @@ export class DomRendererRowFactory {
166
cellAmount
167
&& (
168
(isInSelection && oldIsInSelection)
169
- || (!isInSelection && cell.bg === oldBg)
+ || (!isInSelection && !oldIsInSelection && cell.bg === oldBg)
170
)
171
172
(isInSelection && oldIsInSelection && colors.selectionForeground)
173
- || (!(isInSelection && oldIsInSelection && colors.selectionForeground) && cell.fg === oldFg)
+ || cell.fg === oldFg
174
175
&& cell.extended.ext === oldExt
176
&& isLinkHover === oldLinkHover
0 commit comments