mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-19 16:38:28 +00:00
Change color on selected call (call list). Change burger icon into dot menu in calls list. Change conversation icon to match timeline. Merge calls into conference. Fix twin participants on invitation.
23 lines
703 B
QML
23 lines
703 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
import ColorsList 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'Avatar'
|
|
property color backgroundColor: ColorsList.add(sectionName+'_bg', 'd').color
|
|
property color backgroundDarkModeColor: ColorsList.add(sectionName+'_dark_bg', 'q').color
|
|
|
|
|
|
property string personImage : 'contact_custom'
|
|
|
|
property QtObject initials: QtObject {
|
|
property color color: ColorsList.add(sectionName+'_initials', 'q').color
|
|
property color darkModeColor: ColorsList.add(sectionName+'_dark_initials', 'd').color
|
|
property int pointSize: Units.dp * 10
|
|
property int ratio: 30
|
|
}
|
|
}
|