mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 14:44:13 -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
|
||||
{
|
||||
id: page
|
||||
property var details: base.selection || {}
|
||||
property var details: base.selection
|
||||
anchors.fill: parent
|
||||
width: parent.width
|
||||
ToolboxBackColumn
|
||||
|
|
|
@ -12,7 +12,7 @@ Item
|
|||
property bool installed: toolbox.isInstalled(model.id)
|
||||
property var packageData: model
|
||||
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
|
||||
{
|
||||
id: normalData
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue