Cura/resources/qml/Widgets/Menu.qml
Jaime van Kessel beae4f28f7 Change default sizes of menu
CURA-8928
2022-02-21 11:58:21 +01:00

25 lines
No EOL
475 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
import Cura 1.0 as Cura
//
// Menu with Cura styling.
//
UM.Menu
{
id: menu
padding: 0
implicitWidth: UM.Theme.getSize("menu").width
delegate: Cura.MenuItem {}
background: Rectangle
{
color: UM.Theme.getColor("setting_control")
border.color: UM.Theme.getColor("setting_control_border")
}
}