diff options
author | Ferdinand Oeinck <unknown> | 2022-10-04 09:35:06 +1100 |
---|---|---|
committer | Ferdinand Oeinck <unknown> | 2022-10-04 09:35:06 +1100 |
commit | f4d5c00424eff7c84b4152b4df4de5c0ba4b12bc (patch) | |
tree | e239ae33e6bfb8844a150bb1c25b1b643741211d /src/Style.cxx | |
parent | 232fad28e7003fd38e2468258bcfacc61381ef7a (diff) | |
download | scintilla-mirror-f4d5c00424eff7c84b4152b4df4de5c0ba4b12bc.tar.gz |
Feature [feature-requests:#1453] Added SCI_STYLESETINVISIBLEREPRESENTATION to
make it easier to edit around invisible text.
This also allows representing long lexemes with a single character to provide a
summarized view.
Diffstat (limited to 'src/Style.cxx')
-rw-r--r-- | src/Style.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Style.cxx b/src/Style.cxx index 76ffa4942..a45072292 100644 --- a/src/Style.cxx +++ b/src/Style.cxx @@ -72,7 +72,8 @@ Style::Style(const char *fontName_) noexcept : caseForce(CaseForce::mixed), visible(true), changeable(true), - hotspot(false) { + hotspot(false), + invisibleRepresentation{} { } void Style::Copy(std::shared_ptr<Font> font_, const FontMeasurements &fm_) noexcept { |