mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-28 17:29:19 +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
33 lines
725 B
QML
33 lines
725 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property int spacing: 30
|
|
property int width: 200
|
|
|
|
property QtObject content: QtObject {
|
|
property int height: 40
|
|
}
|
|
|
|
property QtObject description: QtObject {
|
|
property color color: Colors.n.color
|
|
property int pointSize: Units.dp * 10
|
|
property int height: 40
|
|
}
|
|
|
|
property QtObject icon: QtObject {
|
|
property int bottomMargin: 20
|
|
property int size: 148
|
|
}
|
|
|
|
property QtObject title: QtObject {
|
|
property color color: Colors.j.color
|
|
property int bottomMargin: 10
|
|
property int pointSize: Units.dp * 10
|
|
property int height: 20
|
|
}
|
|
}
|