mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-19 07:48:30 +00:00
Remove Call and notices logs from db Delete empty chat rooms after requesting it Option of showing/hidding empty chat rooms Many fixes on notifications count, imdn states, synchronizations behaviors, mouse cursor, etc. Fix crashes Fix timeline times
41 lines
966 B
QML
41 lines
966 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property int height: 225
|
|
property int spacing: 20
|
|
property int width: 400
|
|
|
|
property QtObject copyrightBlock: QtObject {
|
|
property int spacing: 10
|
|
|
|
property QtObject license: QtObject {
|
|
property color color: Colors.d.color
|
|
property int pointSize: Units.dp * 10
|
|
}
|
|
|
|
property QtObject url: QtObject {
|
|
property color color: Colors.i.color
|
|
property int pointSize: Units.dp * 10
|
|
}
|
|
}
|
|
|
|
property QtObject versionsBlock: QtObject {
|
|
property int iconSize: 48
|
|
property int spacing: 10
|
|
|
|
property QtObject appVersion: QtObject {
|
|
property color color: Colors.d.color
|
|
property int pointSize: Units.dp * 10
|
|
}
|
|
|
|
property QtObject coreVersion: QtObject {
|
|
property color color: Colors.d.color
|
|
property int pointSize: Units.dp * 10
|
|
}
|
|
}
|
|
}
|