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
32 lines
768 B
QML
32 lines
768 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property color color: Colors.e.color
|
|
property int height: 280
|
|
property int leftMargin: 12
|
|
property int rightMargin: 12
|
|
property int spacing: 8
|
|
property int topMargin: 10
|
|
|
|
property QtObject title: QtObject {
|
|
property color color: Colors.d.color
|
|
property int bottomMargin: 20
|
|
property int pointSize: Units.dp * 16
|
|
}
|
|
|
|
property QtObject key: QtObject {
|
|
property color color: Colors.d.color
|
|
property int pointSize: Units.dp * 10
|
|
property int width: 200
|
|
}
|
|
|
|
property QtObject value: QtObject {
|
|
property color color: Colors.d.color
|
|
property int pointSize: Units.dp * 10
|
|
}
|
|
}
|