Show welcome page in marketplace window when not logged in

TODO: marketplace logo

CURA-6569
This commit is contained in:
Nino van Hooff 2019-11-04 15:44:04 +01:00
parent ad85e29c0a
commit 3d352b3585
4 changed files with 82 additions and 5 deletions

View file

@ -1,6 +1,8 @@
// Copyright (c) 2018 Ultimaker B.V.
// Toolbox is released under the terms of the LGPLv3 or higher.
// Main window for the Toolbox
import QtQuick 2.2
import QtQuick.Dialogs 1.1
import QtQuick.Window 2.2
@ -29,9 +31,16 @@ Window
Item
{
anchors.fill: parent
WelcomePage
{
visible: toolbox.viewPage === "welcome"
}
ToolboxHeader
{
id: header
visible: toolbox.viewPage !== "welcome"
}
Item