diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index 3aa9dc558f..9f24d91caf 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -466,15 +466,13 @@ UM.MainWindow insertPage(3, catalog.i18nc("@title:tab", "Materials"), Qt.resolvedUrl("Preferences/Materials/MaterialsPage.qml")); insertPage(4, catalog.i18nc("@title:tab", "Profiles"), Qt.resolvedUrl("Preferences/ProfilesPage.qml")); - - //Force refresh - setPage(0); + currentPage = 0; } onVisibleChanged: { // When the dialog closes, switch to the General page. - // This prevents us from having a heavy page like Setting Visiblity active in the background. + // This prevents us from having a heavy page like Setting Visibility active in the background. setPage(0); } }