mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-19 04:18:08 +00:00
16 lines
397 B
QML
16 lines
397 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
// =============================================================================
|
|
|
|
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
|
|
}
|
|
}
|