diff options
Diffstat (limited to 'src/Style.h')
| -rw-r--r-- | src/Style.h | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/src/Style.h b/src/Style.h index 8153d156e..087b13b2f 100644 --- a/src/Style.h +++ b/src/Style.h @@ -17,6 +17,7 @@ struct FontSpecification {  	int size;  	Scintilla::CharacterSet characterSet;  	Scintilla::FontQuality extraFontFlag; +	bool checkMonospaced = false;  	FontSpecification() noexcept :  		fontName(nullptr),  		weight(Scintilla::FontWeight::Normal), @@ -35,6 +36,7 @@ struct FontMeasurements {  	XYPOSITION capitalHeight;	// Top of capital letter to baseline: ascent - internal leading  	XYPOSITION aveCharWidth;  	XYPOSITION spaceWidth; +	bool monospaceASCII = false;  	int sizeZoomed;  	FontMeasurements() noexcept;  	void ClearMeasurements() noexcept; | 
