|
@@ -69,7 +69,8 @@ Item
|
|
|
visible: currentModeIndex == PrintSetupSelectorContents.Mode.Recommended
|
|
|
height: {
|
|
|
const height = base.height - (customPrintSetup.mapToItem(null, 0, 0).y + buttonRow.height + UM.Theme.getSize("default_margin").height);
|
|
|
- return Math.min(implicitHeight, height);
|
|
|
+ const maxHeight = UM.Preferences.getValue("view/settings_list_height");
|
|
|
+ return Math.min(implicitHeight, height, maxHeight);
|
|
|
}
|
|
|
|
|
|
function onModeChanged()
|