From e7ba1d9ff56c748b717294426950e349bbc58e1f Mon Sep 17 00:00:00 2001 From: Ad5001 Date: Wed, 19 Oct 2022 01:53:53 +0200 Subject: [PATCH] Disabling font properties to reactivate native OS font size. --- .../eu/ad5001/LogarithmPlotter/Setting/ExpressionEditor.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/ExpressionEditor.qml b/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/ExpressionEditor.qml index 45c5e0a..5c43350 100644 --- a/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/ExpressionEditor.qml +++ b/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/ExpressionEditor.qml @@ -145,7 +145,7 @@ Item { height: parent.height verticalAlignment: TextInput.AlignVCenter horizontalAlignment: control.label == "" ? TextInput.AlignLeft : TextInput.AlignHCenter - font.pixelSize: 14 + //font.pixelSize: 14 text: control.defValue color: "transparent"//sysPalette.windowText focus: true @@ -183,7 +183,7 @@ Item { textFormat: Text.StyledText text: colorize(editor.text) color: sysPalette.windowText - font.pixelSize: parent.font.pixelSize + //font.pixelSize: parent.font.pixelSize //opacity: editor.activeFocus ? 0 : 1 } }