mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-06-04 11:14:21 +08:00
Merge branch '3.6'
This commit is contained in:
commit
cc8776a9b0
@ -407,14 +407,9 @@ Item {
|
|||||||
function updateFilter()
|
function updateFilter()
|
||||||
{
|
{
|
||||||
var new_filter = {};
|
var new_filter = {};
|
||||||
if (printSequencePropertyProvider.properties.value == "one_at_a_time")
|
new_filter["settable_per_mesh"] = true;
|
||||||
{
|
// Don't filter on "settable_per_meshgroup" any more when `printSequencePropertyProvider.properties.value`
|
||||||
new_filter["settable_per_meshgroup"] = true;
|
// is set to "one_at_a_time", because the current backend architecture isn't ready for that.
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
new_filter["settable_per_mesh"] = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if(filterInput.text != "")
|
if(filterInput.text != "")
|
||||||
{
|
{
|
||||||
|
@ -25,14 +25,11 @@ Item
|
|||||||
rightMargin: UM.Theme.getSize("wide_margin").width
|
rightMargin: UM.Theme.getSize("wide_margin").width
|
||||||
}
|
}
|
||||||
height: UM.Theme.getSize("toolbox_detail_header").height
|
height: UM.Theme.getSize("toolbox_detail_header").height
|
||||||
Image
|
Rectangle
|
||||||
{
|
{
|
||||||
id: thumbnail
|
id: thumbnail
|
||||||
width: UM.Theme.getSize("toolbox_thumbnail_medium").width
|
width: UM.Theme.getSize("toolbox_thumbnail_medium").width
|
||||||
height: UM.Theme.getSize("toolbox_thumbnail_medium").height
|
height: UM.Theme.getSize("toolbox_thumbnail_medium").height
|
||||||
fillMode: Image.PreserveAspectFit
|
|
||||||
source: details === null ? "" : (details.icon_url || "../images/logobot.svg")
|
|
||||||
mipmap: true
|
|
||||||
anchors
|
anchors
|
||||||
{
|
{
|
||||||
top: parent.top
|
top: parent.top
|
||||||
@ -40,6 +37,14 @@ Item
|
|||||||
leftMargin: UM.Theme.getSize("wide_margin").width
|
leftMargin: UM.Theme.getSize("wide_margin").width
|
||||||
topMargin: UM.Theme.getSize("wide_margin").height
|
topMargin: UM.Theme.getSize("wide_margin").height
|
||||||
}
|
}
|
||||||
|
color: white //Always a white background for image (regardless of theme).
|
||||||
|
Image
|
||||||
|
{
|
||||||
|
anchors.fill: parent
|
||||||
|
fillMode: Image.PreserveAspectFit
|
||||||
|
source: details === null ? "" : (details.icon_url || "../images/logobot.svg")
|
||||||
|
mipmap: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Label
|
Label
|
||||||
|
Loading…
x
Reference in New Issue
Block a user