mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 07:33:57 -06:00
Fix binding loop
CURA-6483
This commit is contained in:
parent
71e32d94f7
commit
1d4ab98ddc
1 changed files with 2 additions and 2 deletions
|
@ -349,8 +349,8 @@ Cura.MachineAction
|
||||||
MessageDialog
|
MessageDialog
|
||||||
{
|
{
|
||||||
id: invalidIPAddressMessageDialog
|
id: invalidIPAddressMessageDialog
|
||||||
x: ((parent.width - width) / 2) | 0
|
x: (parent.x + (parent.width) / 2) | 0
|
||||||
y: ((parent.height - height) / 2) | 0
|
y: (parent.y + (parent.height) / 2) | 0
|
||||||
title: catalog.i18nc("@title:window", "Invalid IP address")
|
title: catalog.i18nc("@title:window", "Invalid IP address")
|
||||||
text: catalog.i18nc("@text", "Please enter a valid IP address.")
|
text: catalog.i18nc("@text", "Please enter a valid IP address.")
|
||||||
icon: StandardIcon.Warning
|
icon: StandardIcon.Warning
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue