InstallMissingPackagesDialog.qml 517 B

123456789101112131415161718192021
  1. // Copyright (c) 2021 Ultimaker B.V.
  2. // Cura is released under the terms of the LGPLv3 or higher.
  3. import QtQuick 2.15
  4. import QtQuick.Controls 2.15
  5. import QtQuick.Layouts 1.15
  6. import QtQuick.Window 2.2
  7. import UM 1.5 as UM
  8. import Cura 1.6 as Cura
  9. Marketplace
  10. {
  11. modality: Qt.ApplicationModal
  12. title: catalog.i18nc("@title", "Install missing packages")
  13. pageContentsSource: "MissingPackages.qml"
  14. showSearchHeader: false
  15. showOnboadBanner: false
  16. onClosing: manager.showMissingMaterialsWarning()
  17. }