From 8fc0fb2737c5139efa630769ec156af97861ab6e Mon Sep 17 00:00:00 2001 From: casper Date: Wed, 9 Feb 2022 12:34:18 +0100 Subject: [PATCH] Update `AboutDialog` CURA 8687 --- resources/qml/Dialogs/AboutDialog.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/qml/Dialogs/AboutDialog.qml b/resources/qml/Dialogs/AboutDialog.qml index e2a89ece59..95b46eeaf8 100644 --- a/resources/qml/Dialogs/AboutDialog.qml +++ b/resources/qml/Dialogs/AboutDialog.qml @@ -1,11 +1,11 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 import QtQuick.Controls 2.9 -import QtQuick.Window 2.1 import UM 1.5 as UM +import Cura 1.5 as Cura UM.Dialog { @@ -165,11 +165,11 @@ UM.Dialog } } - rightButtons: Button + rightButtons: Cura.SecondaryButton { //: Close about dialog button id: closeButton - text: catalog.i18nc("@action:button","Close"); + text: catalog.i18nc("@action:button", "Close"); onClicked: base.visible = false; }