13 lines
263 B
QML
13 lines
263 B
QML
import QtQuick 2.0
|
|
import QtQuick.Controls 2.3
|
|
|
|
Menu {
|
|
width: 300
|
|
background: Rectangle {
|
|
implicitWidth: parent.width
|
|
implicitHeight: 10
|
|
color: getAppearanceValueForTheme(appearance.themeName, "mainBackground")
|
|
}
|
|
delegate: CustomMenuItem {}
|
|
}
|