linphone-desktop/Linphone/view/Item/BusyIndicator.qml
Gaelle Braud 517c6b96a5 FIXES:
error text display
show welcome page on first launch only
try to fix crash in variant object (to fix properly)
forbid connection if account already connected
contacts list first row size + contact selected signal
accounts layout
rm layout rearrange warning
login error messages layout
trust circle avatar
no error message on status ok
busy indicator on login
2024-01-17 12:06:04 +01:00

23 lines
No EOL
481 B
QML

import QtQuick 2.7
import QtQuick.Controls 2.2 as Control
import QtQuick.Effects
import Linphone
Item {
id: mainItem
property color indicatorColor: DefaultStyle.main1_500_main
width: busyIndicator.width
height: busyIndicator.height
Control.BusyIndicator {
id: busyIndicator
running: mainItem.visible
anchors.centerIn: mainItem
}
MultiEffect {
source: busyIndicator
anchors.fill: busyIndicator
colorizationColor: mainItem.indicatorColor
colorization: 1.0
}
}