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:
authorJaime van Kessel <nallath@gmail.com>2022-01-03 13:06:19 +0300
committerJaime van Kessel <nallath@gmail.com>2022-01-03 13:06:19 +0300
commit6af2677c5223e0f68cc1221605e0e76ae0e38d63 (patch)
tree286a85098a5515deece951e8e0ce6d6a30861bd1 /plugins/Marketplace/resources
parent3b2be48390abfb465cd85446662cfe253e723507 (diff)
Remove TabManager
Since marketplace itself already needed to be a qObject, there wasn't really a need to have a seperate object for it
Diffstat (limited to 'plugins/Marketplace/resources')
-rw-r--r--plugins/Marketplace/resources/qml/Marketplace.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Marketplace/resources/qml/Marketplace.qml b/plugins/Marketplace/resources/qml/Marketplace.qml
index 9027a02121..b909c88877 100644
--- a/plugins/Marketplace/resources/qml/Marketplace.qml
+++ b/plugins/Marketplace/resources/qml/Marketplace.qml
@@ -130,11 +130,11 @@ Window
height: UM.Theme.getSize("button_icon").height
spacing: 0
background: Rectangle { color: "transparent" }
- currentIndex: tabManager.tabShown
+ currentIndex: manager.tabShown
onCurrentIndexChanged:
{
- tabManager.tabShown = currentIndex
+ manager.tabShown = currentIndex
searchBar.text = "";
searchBar.visible = currentItem.hasSearch;
content.source = currentItem.sourcePage;