aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/ScintillaDoc.html6
-rw-r--r--doc/ScintillaHistory.html4
2 files changed, 9 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 5dfd16585..37a99a0f2 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -128,7 +128,7 @@
<h1>Scintilla Documentation</h1>
- <p>Last edited 25 August 2021 NH</p>
+ <p>Last edited 12 September 2021 NH</p>
<p style="background:#90F0C0">Scintilla 5 has moved the lexers from Scintilla into a new
<a href="Lexilla.html">Lexilla</a> project.<br />
@@ -2448,6 +2448,10 @@ struct Sci_TextToFind {
maximum descent (<code>SCI_SETEXTRADESCENT</code>) to allow for more space between lines.
This may done to make the text easier to read or to accommodate underlines or highlights.
</p>
+ <p>
+ The extra ascent and descent values can be negative but that should be done with care as it
+ may lead to unexpected interference when lines share space.
+ </p>
<h2 id="Cursor">Cursor</h2>
<a class="message" href="#SCI_SETCURSOR">SCI_SETCURSOR(int cursorType)</a><br />
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html
index 080c223a3..1b16f2d18 100644
--- a/doc/ScintillaHistory.html
+++ b/doc/ScintillaHistory.html
@@ -594,6 +594,10 @@
Allow SCI_HIDELINES to hide the first line or all lines which can be useful for filtered views.
</li>
<li>
+ Make negative settings for extra ascent and descent safer by ensuring calculated ascent and thus
+ line height is at least 1 pixel.
+ </li>
+ <li>
Fix display of fold lines when wrapped so they are only drawn once per line, not on each subline.
</li>
<li>