Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml')
-rw-r--r--plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml46
1 files changed, 0 insertions, 46 deletions
diff --git a/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml b/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml
deleted file mode 100644
index 9be8cbe2b9..0000000000
--- a/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright (c) 2019 Ultimaker B.V.
-// Toolbox is released under the terms of the LGPLv3 or higher.
-
-import QtQuick 2.10
-import QtQuick.Controls 2.3
-import UM 1.1 as UM
-
-import "../components"
-
-ScrollView
-{
- clip: true
- width: parent.width
- height: parent.height
- contentHeight: mainColumn.height
-
- Column
- {
- id: mainColumn
- width: base.width
- spacing: UM.Theme.getSize("default_margin").height
-
- ToolboxDownloadsShowcase
- {
- id: showcase
- width: parent.width
- }
-
- ToolboxDownloadsGrid
- {
- id: allPlugins
- width: parent.width
- heading: toolbox.viewCategory === "material" ? catalog.i18nc("@label", "Community Contributions") : catalog.i18nc("@label", "Community Plugins")
- model: toolbox.viewCategory === "material" ? toolbox.materialsAvailableModel : toolbox.pluginsAvailableModel
- }
-
- ToolboxDownloadsGrid
- {
- id: genericMaterials
- visible: toolbox.viewCategory === "material"
- width: parent.width
- heading: catalog.i18nc("@label", "Generic Materials")
- model: toolbox.materialsGenericModel
- }
- }
-}