mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-22 06:03:57 -06:00
Fix resizable Settings-Panel for change in window size. [CURA-6054]
This commit is contained in:
parent
ff79e91686
commit
7b3cf6be64
1 changed files with 6 additions and 1 deletions
|
@ -77,7 +77,12 @@ Item
|
||||||
target: UM.Preferences
|
target: UM.Preferences
|
||||||
onPreferenceChanged:
|
onPreferenceChanged:
|
||||||
{
|
{
|
||||||
customPrintSetup.height = UM.Preferences.getValue("view/settings_list_height");
|
customPrintSetup.height =
|
||||||
|
Math.min
|
||||||
|
(
|
||||||
|
UM.Preferences.getValue("view/settings_list_height"),
|
||||||
|
base.height - (customPrintSetup.mapToItem(null, 0, 0).y + buttonRow.height)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
visible: currentModeIndex == PrintSetupSelectorContents.Mode.Custom
|
visible: currentModeIndex == PrintSetupSelectorContents.Mode.Custom
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue