summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Slide.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Slide.qml b/src/Slide.qml
index c440cfb..e46b568 100644
--- a/src/Slide.qml
+++ b/src/Slide.qml
@@ -92,6 +92,7 @@ Item {
property color titleColor: parent.titleColor;
property color textColor: parent.textColor;
property string fontFamily: parent.fontFamily;
+ property int textFormat: Text.PlainText
visible: false
@@ -187,7 +188,7 @@ Item {
width: slide.contentWidth - parent.x - dot.width - space.width
font.pixelSize: baseFontSize * row.indentFactor
text: content[index]
- textFormat: Text.PlainText
+ textFormat: slide.textFormat
wrapMode: Text.WordWrap
color: slide.textColor
horizontalAlignment: Text.AlignLeft