Merge branch '2.5' of github.com:Ultimaker/Cura

This commit is contained in:
Jaime van Kessel 2017-03-23 15:15:08 +01:00
commit 8023341090
23 changed files with 280 additions and 3 deletions

View file

@ -114,6 +114,11 @@ UM.ManagementPage
property var content
minimumWidth: 350 * Screen.devicePixelRatio;
minimumHeight: 350 * Screen.devicePixelRatio;
// prevent the Machine Settings dialog from going beyond the top of the screen
x: (x < 0) ? 0 : x
y: (y < 0) ? 0 : y
onContentChanged:
{
contents = content;