diff options
-rw-r--r-- | doc/ScintillaHistory.html | 12 | ||||
-rw-r--r-- | qt/ScintillaEditBase/PlatQt.cpp | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 8a861a82f..7322d52f6 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -589,6 +589,18 @@ </table> <h2 id="Releases">Releases</h2> <h3> + <a href="https://www.scintilla.org/scintilla556.zip">Release 5.5.6</a> + </h3> + <ul> + <li> + Released 25 February 2025. + </li> + <li> + On Qt, draw clipped UTF-8 text correctly. + <a href="https://sourceforge.net/p/scintilla/bugs/2464/">Bug #2464</a>. + </li> + </ul> + <h3> <a href="https://www.scintilla.org/scintilla555.zip">Release 5.5.5</a> </h3> <ul> diff --git a/qt/ScintillaEditBase/PlatQt.cpp b/qt/ScintillaEditBase/PlatQt.cpp index 83e78a631..91edf0754 100644 --- a/qt/ScintillaEditBase/PlatQt.cpp +++ b/qt/ScintillaEditBase/PlatQt.cpp @@ -667,7 +667,7 @@ void SurfaceImpl::DrawTextClippedUTF8(PRectangle rc, ColourRGBA back) { SetClip(rc); - DrawTextNoClip(rc, font, ybase, text, fore, back); + DrawTextNoClipUTF8(rc, font, ybase, text, fore, back); PopClip(); } |