12345678910111213141516171819202122 |
- import QtQuick 2.7
- import QtQuick.Controls 2.3
- import UM 1.1 as UM
- 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
- }
|