linphone-desktop/linphone-app/ui/modules/Common/Menus/Menu.qml
Julien Wadel 13e677b4b2 Upgrade data synchronization on chat room managment
Fix synchro between smartsearchbar and participant list
Fix showing avatar on first message burst
Fix SDK missusing on addresses
Fix Popup Menu location
2021-08-17 16:18:06 +02:00

28 lines
550 B
QML

import QtQuick 2.7
import QtQuick.Controls 2.3 as Controls
import Common 1.0
import Common.Styles 1.0
// =============================================================================
Controls.Menu {
id: menu
property var menuStyle : MenuStyle.normal
background: Rectangle {
implicitWidth: menuStyle.width
color: menuStyle.color
radius: menuStyle.radius
border{
color:menuStyle.border.color
width: menuStyle.border.width
}
layer {
enabled: menuStyle.shadowEnabled
effect: PopupShadow {}
}
}
}