mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 23:23:57 -06:00
Fix plugin details
Previous fix for QML warnings broke the details display.
This commit is contained in:
parent
685b80fc3a
commit
c2c5228eee
2 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ import UM 1.1 as UM
|
||||||
Item
|
Item
|
||||||
{
|
{
|
||||||
id: page
|
id: page
|
||||||
property var details: base.selection || {}
|
property var details: base.selection
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
width: parent.width
|
width: parent.width
|
||||||
ToolboxBackColumn
|
ToolboxBackColumn
|
||||||
|
|
|
@ -12,7 +12,7 @@ Item
|
||||||
property bool installed: toolbox.isInstalled(model.id)
|
property bool installed: toolbox.isInstalled(model.id)
|
||||||
property var packageData: model
|
property var packageData: model
|
||||||
width: detailList.width - UM.Theme.getSize("wide_margin").width
|
width: detailList.width - UM.Theme.getSize("wide_margin").width
|
||||||
height: normalData.height + compatibilityChart.height + 3 * UM.Theme.getSize("default_margin").height
|
height: normalData.height + compatibilityChart.height + 4 * UM.Theme.getSize("default_margin").height
|
||||||
Item
|
Item
|
||||||
{
|
{
|
||||||
id: normalData
|
id: normalData
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue