diff options
author | Neil <nyamatongwe@gmail.com> | 2024-06-11 15:12:43 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2024-06-11 15:12:43 +1000 |
commit | eee34c2c5053450ec48aea8a9cbff4d5dd140b55 (patch) | |
tree | b8f26dacb03aa59d21af327ea71e8ffca458f0be /doc | |
parent | 09f1eb12713c43bde56596d963997ee977bca025 (diff) | |
download | scintilla-mirror-eee34c2c5053450ec48aea8a9cbff4d5dd140b55.tar.gz |
Feature [feature-requests:#1517]. Increase maximum zoom set interactively to +60
points.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ScintillaDoc.html | 6 | ||||
-rw-r--r-- | doc/ScintillaHistory.html | 12 |
2 files changed, 15 insertions, 3 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index e0ba05915..5417fa8dd 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -8246,7 +8246,7 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ <p>Scintilla incorporates a "zoom factor" that lets you make all the text in the document larger or smaller in steps of one point. The displayed point size never goes below 2, whatever - zoom factor you set. You can set zoom factors in the range -10 to +20 points.</p> + zoom factor you set. You can set zoom factors in the range -10 to +60 points.</p> <code><a class="message" href="#SCI_ZOOMIN">SCI_ZOOMIN</a><br /> <a class="message" href="#SCI_ZOOMOUT">SCI_ZOOMOUT</a><br /> <a class="message" href="#SCI_SETZOOM">SCI_SETZOOM(int zoomInPoints)</a><br /> @@ -8256,13 +8256,13 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ <p><b id="SCI_ZOOMIN">SCI_ZOOMIN</b><br /> <b id="SCI_ZOOMOUT">SCI_ZOOMOUT</b><br /> <code>SCI_ZOOMIN</code> increases the zoom factor by one point if the current zoom factor is - less than 20 points. <code>SCI_ZOOMOUT</code> decreases the zoom factor by one point if the + less than 60 points. <code>SCI_ZOOMOUT</code> decreases the zoom factor by one point if the current zoom factor is greater than -10 points.</p> <p><b id="SCI_SETZOOM">SCI_SETZOOM(int zoomInPoints)</b><br /> <b id="SCI_GETZOOM">SCI_GETZOOM → int</b><br /> These messages let you set and get the zoom factor directly. There is no limit set on the - factors you can set, so limiting yourself to -10 to +20 to match the incremental zoom functions + factors you can set, so limiting yourself to -10 to +60 to match the incremental zoom functions is a good idea.</p> <h2 id="LongLines">Long lines</h2> diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index a92b79100..3bf4c94fb 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -584,6 +584,18 @@ </table> <h2>Releases</h2> <h3> + <a href="https://www.scintilla.org/scintilla551.zip">Release 5.5.1</a> + </h3> + <ul> + <li> + Released 23 April 2024. + </li> + <li> + Increase maximum zoom set interactively to +60 points. + <a href="https://sourceforge.net/p/scintilla/feature-requests/1517/">Feature #1517</a>. + </li> + </ul> + <h3> <a href="https://www.scintilla.org/scintilla550.zip">Release 5.5.0</a> </h3> <ul> |