|
@@ -21,13 +21,15 @@ class AddPrinterPagesModel(WelcomePagesModel):
|
|
"page_url": self._getBuiltinWelcomePagePath("AddPrinterByIpContent.qml"),
|
|
"page_url": self._getBuiltinWelcomePagePath("AddPrinterByIpContent.qml"),
|
|
"next_page_id": "machine_actions",
|
|
"next_page_id": "machine_actions",
|
|
})
|
|
})
|
|
|
|
+ self._pages.append({"id": "add_cloud_printers",
|
|
|
|
+ "page_url": self._getBuiltinWelcomePagePath("AddCloudPrintersView.qml"),
|
|
|
|
+ "is_final_page": True,
|
|
|
|
+ "next_page_button_text": self._catalog.i18nc("@action:button", "Finish"),
|
|
|
|
+ })
|
|
self._pages.append({"id": "machine_actions",
|
|
self._pages.append({"id": "machine_actions",
|
|
"page_url": self._getBuiltinWelcomePagePath("FirstStartMachineActionsContent.qml"),
|
|
"page_url": self._getBuiltinWelcomePagePath("FirstStartMachineActionsContent.qml"),
|
|
"should_show_function": self.shouldShowMachineActions,
|
|
"should_show_function": self.shouldShowMachineActions,
|
|
})
|
|
})
|
|
- self._pages.append({"id": "add_cloud_printers",
|
|
|
|
- "page_url": self._getBuiltinWelcomePagePath("AddCloudPrintersView.qml"),
|
|
|
|
- })
|
|
|
|
self.setItems(self._pages)
|
|
self.setItems(self._pages)
|
|
|
|
|
|
|
|
|