Skip to content

Commit 5713c50

Browse files
author
koskasdediegor
committed
Took out PushButton Component
1 parent 46e9848 commit 5713c50

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import QtQuick
2+
import QtQuick.Controls
3+
4+
Button {
5+
id: root
6+
required property string label
7+
text: label
8+
}

meshroom/ui/qml/GraphEditor/AttributeItemDelegate.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -483,8 +483,8 @@ RowLayout {
483483

484484
Component {
485485
id: pushButtonComponent
486-
Button {
487-
text: attribute.label
486+
AttributeControls.PushButton{
487+
label: attribute.label
488488
enabled: root.editable
489489
onClicked: {
490490
attribute.clicked()

0 commit comments

Comments
 (0)