mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +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
31 lines
668 B
QML
31 lines
668 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property QtObject buttons: QtObject {
|
|
property int spacing: 10
|
|
}
|
|
|
|
property QtObject content: QtObject {
|
|
property int height: 375
|
|
property int width: 400
|
|
}
|
|
|
|
property QtObject info: QtObject {
|
|
property int spacing: 20
|
|
|
|
property QtObject description: QtObject {
|
|
property color color: Colors.g.color
|
|
property int pointSize: Units.dp * 11
|
|
}
|
|
|
|
property QtObject title: QtObject {
|
|
property color color: Colors.g.color
|
|
property int pointSize: Units.dp * 11
|
|
}
|
|
}
|
|
}
|