2018-12-22 14:07:44 +00:00
|
|
|
import QtQuick 2.0
|
2018-12-22 14:13:53 +00:00
|
|
|
import QtQuick.Controls 2.3
|
2018-11-07 12:00:26 +00:00
|
|
|
|
|
|
|
Menu {
|
2020-05-06 12:43:01 +01:00
|
|
|
width: 300
|
|
|
|
background: Rectangle {
|
|
|
|
implicitWidth: parent.width
|
|
|
|
implicitHeight: 10
|
|
|
|
color: getAppearanceValueForTheme(appearance.themeName, "mainBackground")
|
|
|
|
}
|
|
|
|
delegate: CustomMenuItem {}
|
2018-11-07 12:00:26 +00:00
|
|
|
}
|