Merge pull request #1910 from Ultimaker/fix_dialog_sizes

Fix dialog sizes.
Tested on different OSes and screens, all looked good.
This commit is contained in:
Mark 2017-06-08 11:08:56 +02:00 committed by GitHub
commit 9f66bc8090
7 changed files with 30 additions and 31 deletions

View file

@ -14,8 +14,8 @@ UM.Dialog
//: About dialog title
title: catalog.i18nc("@title:window","About Cura")
minimumWidth: 450 * Screen.devicePixelRatio
minimumHeight: 550 * Screen.devicePixelRatio
minimumWidth: 500
minimumHeight: 650
width: minimumWidth
height: minimumHeight

View file

@ -18,8 +18,8 @@ UM.Dialog
id: base
title: catalog.i18nc("@title:window", "Open project file")
width: 450 * Screen.devicePixelRatio
height: 150 * Screen.devicePixelRatio
width: 450
height: 150
maximumHeight: height
maximumWidth: width
@ -61,10 +61,10 @@ UM.Dialog
Column
{
anchors.fill: parent
anchors.leftMargin: 20 * Screen.devicePixelRatio
anchors.rightMargin: 20 * Screen.devicePixelRatio
anchors.bottomMargin: 20 * Screen.devicePixelRatio
spacing: 10 * Screen.devicePixelRatio
anchors.leftMargin: 20
anchors.rightMargin: 20
anchors.bottomMargin: 20
spacing: 10
Label
{
@ -94,7 +94,7 @@ UM.Dialog
id: openAsProjectButton
text: catalog.i18nc("@action:button", "Open as project");
anchors.right: importModelsButton.left
anchors.rightMargin: UM.Theme.getSize("default_margin").width * Screen.devicePixelRatio
anchors.rightMargin: UM.Theme.getSize("default_margin").width
isDefault: true
onClicked:
{

View file

@ -81,8 +81,6 @@ Menu
title: catalog.i18ncp("@title:window", "Multiply Selected Model", "Multiply Selected Models", UM.Selection.selectionCount)
width: 400 * Screen.devicePixelRatio
height: 80 * Screen.devicePixelRatio
onAccepted: CuraActions.multiplySelection(copiesField.value)

View file

@ -17,8 +17,8 @@ UM.Dialog
id: base
title: catalog.i18nc("@title:window", "Open file(s)")
width: 420 * Screen.devicePixelRatio
height: 170 * Screen.devicePixelRatio
width: 420
height: 170
maximumHeight: height
maximumWidth: width
@ -52,12 +52,12 @@ UM.Dialog
Column
{
anchors.fill: parent
anchors.leftMargin: 20 * Screen.devicePixelRatio
anchors.rightMargin: 20 * Screen.devicePixelRatio
anchors.bottomMargin: 20 * Screen.devicePixelRatio
anchors.leftMargin: 20
anchors.rightMargin: 20
anchors.bottomMargin: 20
anchors.left: parent.left
anchors.right: parent.right
spacing: 10 * Screen.devicePixelRatio
spacing: 10
Text
{

View file

@ -112,8 +112,8 @@ UM.ManagementPage
{
id: actionDialog
property var content
minimumWidth: 350 * Screen.devicePixelRatio;
minimumHeight: 350 * Screen.devicePixelRatio;
minimumWidth: 350
minimumHeight: 350
onContentChanged:
{
contents = content;
@ -257,6 +257,8 @@ UM.ManagementPage
UM.RenameDialog
{
id: renameDialog;
width: 300
height: 150
object: base.currentItem && base.currentItem.name ? base.currentItem.name : "";
property var machine_name_validator: Cura.MachineNameValidator { }
validName: renameDialog.newName.match(renameDialog.machine_name_validator.machineNameRegex) != null;

View file

@ -53,7 +53,7 @@ Item
id: infillCellRight
height: childrenRect.height;
width: base.width * .5
width: base.width * .55
spacing: UM.Theme.getSize("default_margin").width
@ -169,6 +169,10 @@ Item
Text
{
id: infillLabel
width: (infillCellRight.width - ((infillModel.count - 1) * UM.Theme.getSize("default_margin").width)) / (infillModel.count);
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
wrapMode: Text.WordWrap
font: UM.Theme.getFont("default")
anchors.top: infillIconLining.bottom
anchors.horizontalCenter: infillIconLining.horizontalCenter