mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
24 lines
592 B
QML
24 lines
592 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
QtObject {
|
|
property int leftMargin: 50
|
|
property int rightMargin: 50
|
|
|
|
property QtObject buttons: QtObject {
|
|
property int bottomMargin: 15
|
|
property int spacing: 20
|
|
property int topMargin: 15
|
|
}
|
|
|
|
property QtObject confirmDialog: QtObject {
|
|
property int height: 150
|
|
property int width: 370
|
|
}
|
|
|
|
property QtObject description: QtObject {
|
|
property int fontSize: 12
|
|
property int height: 90 // Height with text.
|
|
property int minHeight: 25 // Height without text.
|
|
}
|
|
}
|