From fd0a60f8dc3205e357e69b34e247e6f06f67b76e Mon Sep 17 00:00:00 2001 From: Lipu Fei Date: Tue, 26 Mar 2019 11:06:43 +0100 Subject: [PATCH] Rename StepPanel to WizardPanel --- resources/qml/WelcomePages/WelcomeDialog.qml | 2 +- resources/qml/WelcomePages/{StepPanel.qml => WizardPanel.qml} | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) rename resources/qml/WelcomePages/{StepPanel.qml => WizardPanel.qml} (95%) diff --git a/resources/qml/WelcomePages/WelcomeDialog.qml b/resources/qml/WelcomePages/WelcomeDialog.qml index 00849ca037..c5c1894764 100644 --- a/resources/qml/WelcomePages/WelcomeDialog.qml +++ b/resources/qml/WelcomePages/WelcomeDialog.qml @@ -26,7 +26,7 @@ Window property alias currentStep: stepPanel.currentStep - StepPanel + WizardPanel { id: stepPanel anchors.fill: parent diff --git a/resources/qml/WelcomePages/StepPanel.qml b/resources/qml/WelcomePages/WizardPanel.qml similarity index 95% rename from resources/qml/WelcomePages/StepPanel.qml rename to resources/qml/WelcomePages/WizardPanel.qml index 182e0e7972..61d9244b93 100644 --- a/resources/qml/WelcomePages/StepPanel.qml +++ b/resources/qml/WelcomePages/WizardPanel.qml @@ -10,6 +10,10 @@ import Cura 1.1 as Cura import "../Widgets" +// +// This item is a wizard panel that contains a progress bar at the top and a content area that's beneath the progress +// bar. +// Item { id: base