From 9b1c8d1c7aad98182d4d666a0f44d027d62e5a48 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 5 Oct 2021 13:26:25 +0200 Subject: [PATCH] Add beginnings of printer list page We just need this to have something to navigate to from the other pages as I implement that it automatically skips the sign in page when already signed in, and that it continues after being signed in from the sign in page. Contributes to issue CURA-8609. --- .../Materials/MaterialsSyncDialog.qml | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml b/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml index ee34df3194..8d7be1e119 100644 --- a/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml +++ b/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml @@ -147,5 +147,27 @@ Window } } } + + Rectangle + { + id: printerListPage + color: UM.Theme.getColor("main_background") + + ColumnLayout + { + spacing: UM.Theme.getSize("default_margin").height + anchors.fill: parent + anchors.margins: UM.Theme.getSize("default_margin").width + + Label + { + text: catalog.i18nc("@title:header", "The following printers will receive the new material profiles") + font: UM.Theme.getFont("large_bold") + color: UM.Theme.getColor("text") + Layout.preferredHeight: height + } + //TODO: Add contents. + } + } } } \ No newline at end of file