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.
21 lines
742 B
QML
21 lines
742 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import ColorsList 1.0
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'Contact'
|
|
property int contentHeight: 32
|
|
property int height: 50
|
|
property int leftMargin: 14
|
|
property int rightMargin: 14
|
|
property int spacing: 14
|
|
|
|
property QtObject groupChat: QtObject {
|
|
property string icon: 'chat_room_custom'
|
|
property color color: ColorsList.addImageColor(sectionName+'_groupChat', icon, 'g').color
|
|
property color avatarColor: ColorsList.addImageColor(sectionName+'_groupChat_onAvatar', icon, 'q').color
|
|
property color avatarDarkModeColor: ColorsList.addImageColor(sectionName+'_groupChat_dark_onAvatar', icon, 'd').color
|
|
}
|
|
}
|