Details
-
Bug
-
Resolution: Out of scope
-
Not Evaluated
-
None
-
5.15.10
-
Windows 10 Pro 21H2, MSVC 2019 x64
Description
See attached screenshots. Qt 6.3 looks good, but Qt 5.15 looks wrong.
The text itself has an unexpected font-dependent vertical offset; the strikethrough line is then further offsetted from the text.
import QtQuick 2.15 import QtQuick.Window 2.15 Window { width: 200 height: 100 visible: true Row { spacing: 10 Text { text: "hello" font.family: "Cambria Math" font.pointSize: 14 font.strikeout: true } Text { text: "hello" font.family: "Gabriola" font.pointSize: 14 font.strikeout: true } Text { text: "hello" font.family: "Arial" font.pointSize: 14 font.strikeout: true } } }
Attachments
Issue Links
- relates to
-
QTBUG-96700 Strikethrough formatting changes to underline.
- Closed