diff options
author | Nicholai Benalal <unknown> | 2018-04-19 07:31:34 +1000 |
---|---|---|
committer | Nicholai Benalal <unknown> | 2018-04-19 07:31:34 +1000 |
commit | 1eb0f569bf6e9d3fde4f482fb2c06e980b6f72af (patch) | |
tree | ed0ed7afb0f2df1328cc0ff0201a6cd5907d1314 /doc/ScintillaDoc.html | |
parent | cf140021a52c563e8f6835364499c0ecf54e8ded (diff) | |
download | scintilla-mirror-1eb0f569bf6e9d3fde4f482fb2c06e980b6f72af.tar.gz |
Backport: SC_PRINT_SCREENCOLOURS doesn't force the background colour of line numbers white.
Backport of changeset 6700:daa126b86c17.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index b55c305b4..d019a5688 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -5534,7 +5534,8 @@ struct Sci_RangeToFormat { <td align="center">0</td> - <td>Print using the current screen colours. This is the default.</td> + <td>Print using the current screen colours with the exception of line number margins which print on a white background. + This is the default.</td> </tr> <tr> @@ -5567,9 +5568,19 @@ struct Sci_RangeToFormat { <td align="center">4</td> - <td>Everything prints in its own colour on a white background except that line numbers - use their own background colour.</td> + <td>Everything prints in its own foreground colour but all styles up to and including STYLE_LINENUMBER will print + on a white background.</td> </tr> + + <tr> + <td align="left"><code>SC_PRINT_SCREENCOLOURS</code></td> + + <td align="center">5</td> + + <td>Print using the current screen colours for both foreground and background. + This is the only mode that does not set the background colour of the line number margin to white.</td> + </tr> + </tbody> </table> |