diff --git a/plugins/PrepareStage/PrepareMenu.qml b/plugins/PrepareStage/PrepareMenu.qml index b62d65254d..d8953d7661 100644 --- a/plugins/PrepareStage/PrepareMenu.qml +++ b/plugins/PrepareStage/PrepareMenu.qml @@ -58,6 +58,7 @@ Item Cura.ConfigurationMenu { + id: printerSetup Layout.fillHeight: true Layout.fillWidth: true Layout.preferredWidth: itemRow.width - machineSelection.width - printSetupSelectorItem.width - 2 * UM.Theme.getSize("default_lining").width diff --git a/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml b/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml index a85a69cbac..0c43c67679 100644 --- a/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml +++ b/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml @@ -42,6 +42,7 @@ ScrollView } Rectangle { + id: installedPlugins color: "transparent" width: parent.width height: childrenRect.height + UM.Theme.getSize("default_margin").width @@ -74,6 +75,7 @@ ScrollView Rectangle { + id: installedMaterials color: "transparent" width: parent.width height: childrenRect.height + UM.Theme.getSize("default_margin").width diff --git a/resources/qml/Preferences/Materials/MaterialsView.qml b/resources/qml/Preferences/Materials/MaterialsView.qml index 56fa12877f..77565a9687 100644 --- a/resources/qml/Preferences/Materials/MaterialsView.qml +++ b/resources/qml/Preferences/Materials/MaterialsView.qml @@ -90,7 +90,7 @@ TabView y: UM.Theme.getSize("default_lining").height width: base.width - property real rowHeight: textField.height + UM.Theme.getSize("default_lining").height + property real rowHeight: brandTextField.height + UM.Theme.getSize("default_lining").height MessageDialog { @@ -143,7 +143,7 @@ TabView Label { width: scrollView.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Brand") } ReadOnlyTextField { - id: textField; + id: brandTextField; width: scrollView.columnWidth; text: properties.brand; readOnly: !base.editingEnabled; @@ -153,6 +153,7 @@ TabView Label { width: scrollView.columnWidth; height: parent.rowHeight; verticalAlignment: Qt.AlignVCenter; text: catalog.i18nc("@label", "Material Type") } ReadOnlyTextField { + id: materialTypeField; width: scrollView.columnWidth; text: properties.material; readOnly: !base.editingEnabled; diff --git a/resources/qml/Preferences/ProfileTab.qml b/resources/qml/Preferences/ProfileTab.qml index 0ae0899051..12846cf99b 100644 --- a/resources/qml/Preferences/ProfileTab.qml +++ b/resources/qml/Preferences/ProfileTab.qml @@ -27,6 +27,7 @@ Tab { anchors.fill: parent anchors.margins: UM.Theme.getSize("default_margin").width + id: profileSettingsView Component {