Skip to content
Snippets Groups Projects
Commit 93d4f22e authored by George Nachman's avatar George Nachman
Browse files

Disable ligatures-across-different-backgrounds when muting is in use (cursor...

Disable ligatures-across-different-backgrounds when muting is in use (cursor boost and dimming use this). A background color is needed to compute the dimmed value.
parent 5db330e1
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -388,7 +388,7 @@ typedef struct iTermTextColorContext {
 
// Now iterate over the lines and paint the characters.
CGContextRef ctx = (CGContextRef)[[NSGraphicsContext currentContext] graphicsPort];
if (self.minimumContrast > 0) {
if (self.minimumContrast > 0 || self.colorMap.mutingAmount > 0) {
[self drawForegroundForBackgroundRunArrays:backgroundRunArrays
ctx:ctx];
} else {
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment