Cura/resources/qml/Widgets/Menu.qml
Jaime van Kessel babf3043f8 Use Cura.Menu instead of UM.Menu
Same as the previous commit. Use the specialised variant provided by Cura instead
of the generic one of UM

CURA-8683
2022-01-14 13:50:44 +01:00

22 lines
No EOL
427 B
QML

// Copyright (c) 2021 Ultimaker B.V.
// Cura is released under the terms of the LGPLv3 or higher.
import QtQuick 2.7
import UM 1.5 as UM
//
// Menu with Cura styling.
//
UM.Menu
{
id: menu
padding: 0
implicitWidth: UM.Theme.getSize("setting_control").width
background: Rectangle {
color: UM.Theme.getColor("setting_control")
border.color: UM.Theme.getColor("setting_control_border")
}
}