mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-23 22:58:15 +00:00
14 lines
351 B
QML
14 lines
351 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import ColorsList 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'MenuSeparator'
|
|
property var colorModel: ColorsList.add(sectionName+'_n', 'u')
|
|
property int topPadding: 0
|
|
property int bottomPadding: 0
|
|
property int height : 1
|
|
}
|