mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-18 11:58:11 +00:00
18 lines
363 B
QML
18 lines
363 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
import Units 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property QtObject background: QtObject {
|
|
property int height: 30
|
|
property int radius: 4
|
|
property int width: 160
|
|
}
|
|
|
|
property QtObject text: QtObject {
|
|
property int pointSize: Units.dp * 8
|
|
}
|
|
}
|