mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-27 16:59:21 +00:00
19 lines
452 B
QML
19 lines
452 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import ColorsList 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'Assistant'
|
|
property var colorModel: ColorsList.add(sectionName, 'k')
|
|
property int bottomMargin: 35
|
|
property int leftMargin: 90
|
|
property int rightMargin: 90
|
|
property int topMargin: 50
|
|
|
|
property QtObject stackAnimation: QtObject {
|
|
property int duration: 400
|
|
}
|
|
}
|