mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-18 20:28:01 -06:00

The filter affects the URL. So we can't just start a request in the init. We need to request once all of the properties have been set. We also can't start the request when the filter changes, because there will be more filters and we don't want to start multiple requests. It needs to be manual. Contributes to issue CURA-8557.
12 lines
No EOL
233 B
QML
12 lines
No EOL
233 B
QML
// Copyright (c) 2021 Ultimaker B.V.
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import Marketplace 1.0 as Marketplace
|
|
|
|
Packages
|
|
{
|
|
model: Marketplace.PackageList
|
|
{
|
|
packageTypeFilter: "plugin"
|
|
}
|
|
} |