mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-21 12:09:13 +08:00

Instead of re-using the setting controls. It's not a setting. Contributes to issue CURA-8688.
25 lines
459 B
QML
25 lines
459 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
|
|
|
|
width: UM.Theme.getSize("context_menu").width
|
|
|
|
delegate: Cura.MenuItem {}
|
|
background: Rectangle
|
|
{
|
|
color: UM.Theme.getColor("main_background")
|
|
border.color: UM.Theme.getColor("lining")
|
|
}
|
|
} |