From 8f8b13f7c40a96480228f56ad263f121fdd2ef56 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Fri, 25 Jan 2019 11:07:37 +0100 Subject: [PATCH] Let Cura define how the message actions look like CURA-6115 --- resources/qml/Cura.qml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 + } + } } }