In scintilla/qt/ScintillaEditBase/PlatQt.cpp, both DrawTextClipped() and DrawTextClippedUTF8() call DrawTextNoClip(). From the looks of it DrawTextClippedUTF8() should have called UTF-8 variant of DrawTextNoClip().
--- C:/PlatQt.cpp Mon Feb 24 21:32:48 2025
+++ C:/PlatQt.cpp.fixed Wed Feb 26 13:30:50 2025
@@ -667,7 +667,7 @@
ColourRGBA back)
{
SetClip(rc);
- DrawTextNoClip(rc, font, ybase, text, fore, back);
+ DrawTextNoClipUTF8(rc, font, ybase, text, fore, back);
PopClip();
}
Committed with [3f8214].
Related
Commit: [3f8214]