fixes: generic VariantList FriendModel resetAddresses check null default account address list update on save generic item for white background lists ui fix set photo friend protect friendmodel setters remove main splitview to stick to the mock-up (keeping it commented cause it may be useful to be able to resize the panels) default image avatar fix crash when address not set
17 lines
No EOL
455 B
QML
17 lines
No EOL
455 B
QML
import QtQuick
|
|
import QtQuick.Controls as Control
|
|
import Linphone
|
|
|
|
Control.Control {
|
|
width: 360 * DefaultStyle.dp
|
|
property color backgroundColor
|
|
topPadding: 10 * DefaultStyle.dp
|
|
bottomPadding: 10 * DefaultStyle.dp
|
|
leftPadding: 10 * DefaultStyle.dp
|
|
rightPadding: 10 * DefaultStyle.dp
|
|
background: Rectangle {
|
|
anchors.fill: parent
|
|
radius: 15 * DefaultStyle.dp
|
|
color: mainItem.backgroundColor ? mainItem.backgroundColor : DefaultStyle.grey_0
|
|
}
|
|
} |