mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-20 13:17:51 -06:00
Added min width & height to machine action popup.
This commit is contained in:
parent
31bc3d2575
commit
b17f8b5dd6
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue