123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import QtQuick
- import QtQuick.Controls.impl
- import QtQuick.Templates as T
- T.MenuSeparator {
- id: control
- implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
- implicitContentWidth + leftPadding + rightPadding)
- implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
- implicitContentHeight + topPadding + bottomPadding)
- padding: 2
- verticalPadding: padding + 4
- contentItem: Rectangle {
- implicitWidth: 188
- implicitHeight: 1
- color: control.palette.mid
- }
- }
|