mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-29 15:25:02 +08:00
22 lines
548 B
QML
22 lines
548 B
QML
// Copyright (c) 2021 Ultimaker B.V.
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.7
|
|
import QtQuick.Controls 2.3
|
|
|
|
import UM 1.1 as UM
|
|
|
|
//
|
|
// MenuSeparator with Cura styling.
|
|
//
|
|
MenuSeparator
|
|
{
|
|
leftPadding: UM.Theme.getSize("default_margin").width
|
|
rightPadding: UM.Theme.getSize("default_margin").width
|
|
contentItem: Rectangle
|
|
{
|
|
implicitHeight: UM.Theme.getSize("default_lining").height
|
|
color: UM.Theme.getColor("setting_control_border")
|
|
}
|
|
height: visible ? implicitHeight: 0
|
|
} |