summaryrefslogtreecommitdiff
path: root/components/TableView.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/TableView.qml')
-rw-r--r--components/TableView.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/components/TableView.qml b/components/TableView.qml
index 8df6fe9b..14bf1517 100644
--- a/components/TableView.qml
+++ b/components/TableView.qml
@@ -168,12 +168,14 @@ FocusScope{
elide: itemElideMode
text: itemValue ? itemValue : ""
color: itemForeground
+ renderType: Desktop.nativeTextRendering ? Text.NativeRendering : Text.QtRendering
}
Text {
id: sizehint
font: label.font
text: itemValue ? itemValue : ""
visible: false
+ renderType: Desktop.nativeTextRendering ? Text.NativeRendering : Text.QtRendering
}
}
}
@@ -432,7 +434,7 @@ FocusScope{
}
- Text{ id:text }
+ Text{ id:text; renderType: Desktop.nativeTextRendering ? Text.NativeRendering : Text.QtRendering }
Item {
id: tableColumn