diff options
author | Jedi18 <targetakhil@gmail.com> | 2021-02-23 22:07:45 +0530 |
---|---|---|
committer | Jedi18 <targetakhil@gmail.com> | 2021-02-23 22:07:45 +0530 |
commit | ebb35e5cb131d012862be05db5d5c8e95f21ad0d (patch) | |
tree | 6b8d39d1c2ce6370c94fd0543085214e7d613e89 /resources/qml/MatrixTextField.qml | |
parent | add matrix text field (diff) | |
download | nheko-ebb35e5cb131d012862be05db5d5c8e95f21ad0d.tar.xz |
fix matrixtextfield color and quickswitcher font size
Diffstat (limited to 'resources/qml/MatrixTextField.qml')
-rw-r--r-- | resources/qml/MatrixTextField.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/MatrixTextField.qml b/resources/qml/MatrixTextField.qml index 2852044b..037a0b71 100644 --- a/resources/qml/MatrixTextField.qml +++ b/resources/qml/MatrixTextField.qml @@ -11,7 +11,7 @@ TextInput { anchors.top: parent.bottom anchors.horizontalCenter: parent.horizontalCenter - color: "blue" + color: colors.highlight height: 1 width: parent.width @@ -23,7 +23,7 @@ TextInput { height: parent.height+1 width: 0 - color: "#000000" + color: colors.text states: State { name: "focused"; when: input.activeFocus == true |