1
0
Fork 0
VideoPlayer/src/qml/CustomMenu.qml
2020-05-06 12:43:01 +01:00

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 {}
}