diff options
Diffstat (limited to 'src/EditView.cxx')
| -rw-r--r-- | src/EditView.cxx | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/src/EditView.cxx b/src/EditView.cxx index 8a7a50a7e..681541418 100644 --- a/src/EditView.cxx +++ b/src/EditView.cxx @@ -2808,6 +2808,14 @@ Sci::Position EditView::FormatRange(bool draw, CharacterRangeFull chrg, Rectangl  		vsPrint.Refresh(*surfaceMeasure, model.pdoc->tabInChars);	// Recalculate fixedColumnWidth  	} +	// Turn off change history marker backgrounds +	constexpr unsigned int changeMarkers = +		1u << static_cast<unsigned int>(MarkerOutline::HistoryRevertedToOrigin) | +		1u << static_cast<unsigned int>(MarkerOutline::HistorySaved) | +		1u << static_cast<unsigned int>(MarkerOutline::HistoryModified) | +		1u << static_cast<unsigned int>(MarkerOutline::HistoryRevertedToModified); +	vsPrint.maskInLine &= ~changeMarkers; +  	const Sci::Line linePrintStart = model.pdoc->SciLineFromPosition(chrg.cpMin);  	Sci::Line linePrintLast = linePrintStart + (rc.bottom - rc.top) / vsPrint.lineHeight - 1;  	if (linePrintLast < linePrintStart) | 
