mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
- Fix hidden buzy indicator on participant invitations (from Chat Room infos). - Fix auto removing participant on timeout invitations (30s).
12 lines
406 B
QML
12 lines
406 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
import ColorsList 1.0
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'Busy'
|
|
property color color: ColorsList.add(sectionName+'_indicator', 'q').color
|
|
property color alternateColor: ColorsList.add(sectionName+'_indicator_alt', 'i').color
|
|
property int duration: 1250
|
|
property int nSpheres: 8
|
|
}
|