diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index f3d2e7295a..8de982115b 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -373,6 +373,22 @@ UM.MainWindow bottom: parent.bottom bottomMargin: UM.Theme.getSize("default_margin").height } + + primaryButton: Component + { + Cura.PrimaryButton + { + text: model.name + } + } + + secondaryButton: Component + { + Cura.SecondaryButton + { + text: model.name + } + } } }