mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
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
23 lines
No EOL
481 B
QML
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
|
|
}
|
|
} |