Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2016-12-15 19:18:08 +0300
committerJaime van Kessel <nallath@gmail.com>2016-12-15 19:18:08 +0300
commit6baff7bbb29001be11668d7fe1aeccc61c12f221 (patch)
treecb91df416d5e4fda7037ba846fe2363accdd36c5 /resources
parent2e894477c830e3b18aa6b8c19efbc074e667e8a1 (diff)
Fixed create profile from settings not working
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/Cura.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml
index e78786c7a3..314f3b7443 100644
--- a/resources/qml/Cura.qml
+++ b/resources/qml/Cura.qml
@@ -533,9 +533,9 @@ UM.MainWindow
target: Cura.Actions.addProfile
onTriggered:
{
- preferences.setPage(4);
- preferences.show();
+ preferences.show();
+ preferences.setPage(4);
// Create a new profile after a very short delay so the preference page has time to initiate
createProfileTimer.start();
}