diff options
author | nyamatongwe <devnull@localhost> | 2000-08-16 12:55:58 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-08-16 12:55:58 +0000 |
commit | 46a5a58aed719e6a924978e777ac7f4fc52135e7 (patch) | |
tree | cd622b4abbd40ec758d4aa320dda9b2cec20c799 /src/ViewStyle.cxx | |
parent | 6a3a6fb8c005995a26302cfbaa8a87896cb3b3f1 (diff) | |
download | scintilla-mirror-46a5a58aed719e6a924978e777ac7f4fc52135e7.tar.gz |
Invisible text.
Fixes to ensure long lines do not overflow buffers.
Diffstat (limited to 'src/ViewStyle.cxx')
-rw-r--r-- | src/ViewStyle.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ViewStyle.cxx b/src/ViewStyle.cxx index fae8eb53b..9b7a8535e 100644 --- a/src/ViewStyle.cxx +++ b/src/ViewStyle.cxx @@ -210,7 +210,7 @@ void ViewStyle::ResetDefaultStyle() { styles[STYLE_DEFAULT].Clear(Colour(0,0,0), Colour(0xff,0xff,0xff), Platform::DefaultFontSize(), fontNames.Save(Platform::DefaultFont()), SC_CHARSET_DEFAULT, - false, false, false, false); + false, false, false, false, true); } void ViewStyle::ClearStyles() { @@ -226,7 +226,8 @@ void ViewStyle::ClearStyles() { styles[STYLE_DEFAULT].bold, styles[STYLE_DEFAULT].italic, styles[STYLE_DEFAULT].eolFilled, - styles[STYLE_DEFAULT].underline); + styles[STYLE_DEFAULT].underline, + styles[STYLE_DEFAULT].visible); } } styles[STYLE_LINENUMBER].back.desired = Platform::Chrome(); |