Added min width & height to machine action popup.

This commit is contained in:
Jaime van Kessel 2016-09-12 14:38:23 +02:00
parent 31bc3d2575
commit b17f8b5dd6

View file

@ -3,6 +3,7 @@
import QtQuick 2.1 import QtQuick 2.1
import QtQuick.Controls 1.1 import QtQuick.Controls 1.1
import QtQuick.Window 2.1
import UM 1.2 as UM import UM 1.2 as UM
import Cura 1.0 as Cura import Cura 1.0 as Cura
@ -106,6 +107,8 @@ UM.ManagementPage
{ {
id: actionDialog id: actionDialog
property var content property var content
minimumWidth: 350 * Screen.devicePixelRatio;
minimumHeight: 350 * Screen.devicePixelRatio;
onContentChanged: onContentChanged:
{ {
contents = content; contents = content;