diff options
author | DeepBlueV7.X <nicolas.werner@hotmail.de> | 2023-10-02 14:25:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-02 14:25:51 +0000 |
commit | 29b9e0f7506f2150312ccf737edfd027ebbbdc4c (patch) | |
tree | e4382f892ed7ac2482752fa7e4f6a2167643954a /resources | |
parent | Merge pull request #1573 from Nheko-Reborn/fixqml (diff) | |
parent | Fix reply text color (diff) | |
download | nheko-29b9e0f7506f2150312ccf737edfd027ebbbdc4c.tar.xz |
Merge pull request #1576 from Nheko-Reborn/fixreplies
Fix reply text color
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/MatrixText.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/resources/qml/MatrixText.qml b/resources/qml/MatrixText.qml index b3a8a05a..521e9280 100644 --- a/resources/qml/MatrixText.qml +++ b/resources/qml/MatrixText.qml @@ -2,7 +2,9 @@ // // SPDX-License-Identifier: GPL-3.0-or-later -import QtQuick +// TODO: using any Qt 6 API version will screw up the reply text color. We need to +// figure out a more permanent fix than just importing the old version. +import QtQuick 2.15 import QtQuick.Controls import im.nheko |