mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-20 21:28:07 +00:00
16 lines
399 B
QML
16 lines
399 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property color color: '#444444' // Not a `Common.Color`. Specific case.
|
|
property int height: 350
|
|
property int width: 620
|
|
|
|
property QtObject busyIndicator: QtObject {
|
|
property int bottomMargin: 25
|
|
property int height: 24
|
|
property int width: 24
|
|
}
|
|
}
|