mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-19 07:48:30 +00:00
Add contact URL. Change unread message count design in chat. Add page text about missing features when using third party SIP account. Add Translation link for contribution in about. Fix history view. Add delay of 500ms on message search. Fix unresponsive check update button in settings. Fix wrong characters in record name. # Conflicts: # linphone-app/cmake_builder/linphone_package/CMakeLists.txt
23 lines
640 B
QML
23 lines
640 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import ColorsList 1.0
|
|
import Units 1.0
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'UseAppSipAccount'
|
|
property QtObject checkBox: QtObject {
|
|
property int width: 300
|
|
}
|
|
property QtObject warningBlock: QtObject {
|
|
property int spacing: 10
|
|
property int pointSize: Units.dp * 10
|
|
property color color: ColorsList.add(sectionName+'_description', 'g').color
|
|
|
|
property QtObject contactUrl: QtObject {
|
|
property color color: ColorsList.add(sectionName+'_url', 'i').color
|
|
property int pointSize: Units.dp * 9
|
|
}
|
|
}
|
|
}
|