1
0
Fork 0
VideoPlayer/src/qml/CustomMenu.qml

13 lines
263 B
QML
Raw Normal View History

import QtQuick 2.0
2018-12-22 14:13:53 +00:00
import QtQuick.Controls 2.3
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 {}
}