mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-13 21:25:58 +08:00
Fix DPI issue with DiscardOrKeepProfileChangesDialog
This commit is contained in:
parent
7632b9df79
commit
36dedabd11
@ -36,9 +36,14 @@ UM.Dialog
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Column
|
Row
|
||||||
{
|
{
|
||||||
anchors.fill: parent
|
id: infoTextRow
|
||||||
|
height: childrenRect.height
|
||||||
|
anchors.margins: UM.Theme.getSize("default_margin").width
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.top: parent.top
|
||||||
spacing: UM.Theme.getSize("default_margin").width
|
spacing: UM.Theme.getSize("default_margin").width
|
||||||
|
|
||||||
UM.I18nCatalog
|
UM.I18nCatalog
|
||||||
@ -47,28 +52,25 @@ UM.Dialog
|
|||||||
name: "cura"
|
name: "cura"
|
||||||
}
|
}
|
||||||
|
|
||||||
Row
|
Label
|
||||||
{
|
{
|
||||||
height: childrenRect.height
|
text: catalog.i18nc("@text:window", "You have customized some profile settings.\nWould you like to keep or discard those settings?")
|
||||||
anchors.margins: UM.Theme.getSize("default_margin").width
|
anchors.margins: UM.Theme.getSize("default_margin").width
|
||||||
anchors.left: parent.left
|
font: UM.Theme.getFont("default")
|
||||||
anchors.right: parent.right
|
wrapMode: Text.WordWrap
|
||||||
spacing: UM.Theme.getSize("default_margin").width
|
|
||||||
|
|
||||||
Label
|
|
||||||
{
|
|
||||||
text: catalog.i18nc("@text:window", "You have customized some profile settings.\nWould you like to keep or discard those settings?")
|
|
||||||
anchors.margins: UM.Theme.getSize("default_margin").width
|
|
||||||
font: UM.Theme.getFont("default")
|
|
||||||
wrapMode: Text.WordWrap
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Item
|
||||||
|
{
|
||||||
|
anchors.margins: UM.Theme.getSize("default_margin").width
|
||||||
|
anchors.top: infoTextRow.bottom
|
||||||
|
anchors.bottom: optionRow.top
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
TableView
|
TableView
|
||||||
{
|
{
|
||||||
anchors.margins: UM.Theme.getSize("default_margin").width
|
anchors.fill: parent
|
||||||
anchors.left: parent.left
|
|
||||||
anchors.right: parent.right
|
|
||||||
height: base.height - 150 * Screen.devicePixelRatio
|
height: base.height - 150 * Screen.devicePixelRatio
|
||||||
id: tableView
|
id: tableView
|
||||||
Component
|
Component
|
||||||
@ -132,92 +134,96 @@ UM.Dialog
|
|||||||
|
|
||||||
model: base.changesModel
|
model: base.changesModel
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Item
|
Item
|
||||||
|
{
|
||||||
|
id: optionRow
|
||||||
|
anchors.bottom: buttonsRow.top
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.margins: UM.Theme.getSize("default_margin").width
|
||||||
|
height: childrenRect.height
|
||||||
|
|
||||||
|
ComboBox
|
||||||
{
|
{
|
||||||
anchors.right: parent.right
|
id: discardOrKeepProfileChangesDropDownButton
|
||||||
anchors.left: parent.left
|
width: 300
|
||||||
anchors.margins: UM.Theme.getSize("default_margin").width
|
|
||||||
height:childrenRect.height
|
|
||||||
|
|
||||||
ComboBox
|
model: ListModel
|
||||||
{
|
{
|
||||||
id: discardOrKeepProfileChangesDropDownButton
|
id: discardOrKeepProfileListModel
|
||||||
width: 300
|
|
||||||
|
|
||||||
model: ListModel
|
Component.onCompleted: {
|
||||||
{
|
append({ text: catalog.i18nc("@option:discardOrKeep", "Always ask me this"), code: "always_ask" })
|
||||||
id: discardOrKeepProfileListModel
|
append({ text: catalog.i18nc("@option:discardOrKeep", "Discard and never ask again"), code: "always_discard" })
|
||||||
|
append({ text: catalog.i18nc("@option:discardOrKeep", "Keep and never ask again"), code: "always_keep" })
|
||||||
Component.onCompleted: {
|
|
||||||
append({ text: catalog.i18nc("@option:discardOrKeep", "Always ask me this"), code: "always_ask" })
|
|
||||||
append({ text: catalog.i18nc("@option:discardOrKeep", "Discard and never ask again"), code: "always_discard" })
|
|
||||||
append({ text: catalog.i18nc("@option:discardOrKeep", "Keep and never ask again"), code: "always_keep" })
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
onActivated:
|
|
||||||
{
|
|
||||||
var code = model.get(index).code;
|
|
||||||
UM.Preferences.setValue("cura/choice_on_profile_override", code);
|
|
||||||
|
|
||||||
if (code == "always_keep") {
|
|
||||||
keepButton.enabled = true;
|
|
||||||
discardButton.enabled = false;
|
|
||||||
}
|
|
||||||
else if (code == "always_discard") {
|
|
||||||
keepButton.enabled = false;
|
|
||||||
discardButton.enabled = true;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
keepButton.enabled = true;
|
|
||||||
discardButton.enabled = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Item
|
|
||||||
{
|
|
||||||
anchors.right: parent.right
|
|
||||||
anchors.left: parent.left
|
|
||||||
anchors.margins: UM.Theme.getSize("default_margin").width
|
|
||||||
height: childrenRect.height
|
|
||||||
|
|
||||||
Button
|
|
||||||
{
|
|
||||||
id: discardButton
|
|
||||||
text: catalog.i18nc("@action:button", "Discard");
|
|
||||||
anchors.right: parent.right
|
|
||||||
onClicked:
|
|
||||||
{
|
|
||||||
CuraApplication.discardOrKeepProfileChangesClosed("discard")
|
|
||||||
base.hide()
|
|
||||||
}
|
|
||||||
isDefault: true
|
|
||||||
}
|
|
||||||
|
|
||||||
Button
|
|
||||||
{
|
|
||||||
id: keepButton
|
|
||||||
text: catalog.i18nc("@action:button", "Keep");
|
|
||||||
anchors.right: discardButton.left
|
|
||||||
anchors.rightMargin: UM.Theme.getSize("default_margin").width
|
|
||||||
onClicked:
|
|
||||||
{
|
|
||||||
CuraApplication.discardOrKeepProfileChangesClosed("keep")
|
|
||||||
base.hide()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Button
|
onActivated:
|
||||||
{
|
{
|
||||||
id: createNewProfileButton
|
var code = model.get(index).code;
|
||||||
text: catalog.i18nc("@action:button", "Create New Profile");
|
UM.Preferences.setValue("cura/choice_on_profile_override", code);
|
||||||
anchors.left: parent.left
|
|
||||||
action: Cura.Actions.addProfile
|
if (code == "always_keep") {
|
||||||
onClicked: base.hide()
|
keepButton.enabled = true;
|
||||||
|
discardButton.enabled = false;
|
||||||
|
}
|
||||||
|
else if (code == "always_discard") {
|
||||||
|
keepButton.enabled = false;
|
||||||
|
discardButton.enabled = true;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
keepButton.enabled = true;
|
||||||
|
discardButton.enabled = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Item
|
||||||
|
{
|
||||||
|
id: buttonsRow
|
||||||
|
anchors.bottom: parent.bottom
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.margins: UM.Theme.getSize("default_margin").width
|
||||||
|
height: childrenRect.height
|
||||||
|
|
||||||
|
Button
|
||||||
|
{
|
||||||
|
id: discardButton
|
||||||
|
text: catalog.i18nc("@action:button", "Discard");
|
||||||
|
anchors.right: parent.right
|
||||||
|
onClicked:
|
||||||
|
{
|
||||||
|
CuraApplication.discardOrKeepProfileChangesClosed("discard")
|
||||||
|
base.hide()
|
||||||
|
}
|
||||||
|
isDefault: true
|
||||||
|
}
|
||||||
|
|
||||||
|
Button
|
||||||
|
{
|
||||||
|
id: keepButton
|
||||||
|
text: catalog.i18nc("@action:button", "Keep");
|
||||||
|
anchors.right: discardButton.left
|
||||||
|
anchors.rightMargin: UM.Theme.getSize("default_margin").width
|
||||||
|
onClicked:
|
||||||
|
{
|
||||||
|
CuraApplication.discardOrKeepProfileChangesClosed("keep")
|
||||||
|
base.hide()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Button
|
||||||
|
{
|
||||||
|
id: createNewProfileButton
|
||||||
|
text: catalog.i18nc("@action:button", "Create New Profile");
|
||||||
|
anchors.left: parent.left
|
||||||
|
action: Cura.Actions.addProfile
|
||||||
|
onClicked: base.hide()
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user