diff options
author | Loren Burkholder <computersemiexpert@outlook.com> | 2023-02-25 11:03:30 -0500 |
---|---|---|
committer | Loren Burkholder <computersemiexpert@outlook.com> | 2023-02-28 20:40:22 -0500 |
commit | a7314028166498711d7e9c3925d5e991fb4f83d5 (patch) | |
tree | c1765eca244cb56cf3fd8704705ad3fe99918e9b /resources/qml/MessageInput.qml | |
parent | Translated using Weblate (Ukrainian) (diff) | |
download | nheko-a7314028166498711d7e9c3925d5e991fb4f83d5.tar.xz |
Use the nheko spinner everywhere
Diffstat (limited to 'resources/qml/MessageInput.qml')
-rw-r--r-- | resources/qml/MessageInput.qml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/resources/qml/MessageInput.qml b/resources/qml/MessageInput.qml index f31123e5..6029a31d 100644 --- a/resources/qml/MessageInput.qml +++ b/resources/qml/MessageInput.qml @@ -4,6 +4,7 @@ import "./emoji" import "./voip" +import "./ui" import QtQuick 2.12 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.2 @@ -90,8 +91,9 @@ Rectangle { color: Nheko.colors.window visible: room && room.input.uploading - NhekoBusyIndicator { - anchors.fill: parent + Spinner { + anchors.centerIn: parent + height: parent.height / 2 running: parent.visible } |