diff options
author | nyamatongwe <devnull@localhost> | 2001-12-20 02:29:36 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-12-20 02:29:36 +0000 |
commit | 0833380d77939a98c98a22060f8904efd393b86e (patch) | |
tree | 88d99ad316492def0de5e7a72da7916842bebb09 /src/ViewStyle.cxx | |
parent | eebc3a79d1d131f8a47703163ca83710d079fcf9 (diff) | |
download | scintilla-mirror-0833380d77939a98c98a22060f8904efd393b86e.tar.gz |
Added changeable attribute to styles that defaults to true. When it is
false, text in this style is read only.
Diffstat (limited to 'src/ViewStyle.cxx')
-rw-r--r-- | src/ViewStyle.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ViewStyle.cxx b/src/ViewStyle.cxx index 40615da65..7937e1fca 100644 --- a/src/ViewStyle.cxx +++ b/src/ViewStyle.cxx @@ -219,7 +219,7 @@ void ViewStyle::ResetDefaultStyle() { ColourDesired(0xff,0xff,0xff), Platform::DefaultFontSize(), fontNames.Save(Platform::DefaultFont()), SC_CHARSET_DEFAULT, - false, false, false, false, Style::caseMixed, true); + false, false, false, false, Style::caseMixed, true, true); } void ViewStyle::ClearStyles() { |