mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 23:08:59 +08:00
Fix some leftover renamings
Contributes to CURA-5941
This commit is contained in:
parent
e159cbdb1a
commit
4dcce7616b
@ -13,8 +13,8 @@ Column
|
||||
property var loggedIn: false
|
||||
property var profileImage: ""
|
||||
|
||||
padding: 2 * UM.Theme.getSize("default_margin").height
|
||||
spacing: 2 * UM.Theme.getSize("default_margin").height
|
||||
padding: UM.Theme.getSize("wide_margin").height
|
||||
spacing: UM.Theme.getSize("wide_margin").height
|
||||
|
||||
AvatarImage
|
||||
{
|
||||
|
@ -139,8 +139,8 @@ Item
|
||||
sourceSize.width: width
|
||||
sourceSize.height: height
|
||||
visible: source != ""
|
||||
width: height
|
||||
height: Math.round(0.2 * base.height)
|
||||
width: UM.Theme.getSize("standard_arrow").width
|
||||
height: UM.Theme.getSize("standard_arrow").height
|
||||
color: UM.Theme.getColor("text")
|
||||
}
|
||||
|
||||
|
@ -93,7 +93,7 @@ Item
|
||||
|
||||
background: Item {}
|
||||
|
||||
onClicked: togglePopup() // Will hide the popup item
|
||||
onClicked: toggleContent() // Will hide the popup item
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -134,7 +134,7 @@ Cura.ExpandableComponent
|
||||
text: catalog.i18nc("@button", "Add printer")
|
||||
onClicked:
|
||||
{
|
||||
togglePopup()
|
||||
toggleContent()
|
||||
Cura.Actions.addMachine.trigger()
|
||||
}
|
||||
}
|
||||
@ -146,7 +146,7 @@ Cura.ExpandableComponent
|
||||
text: catalog.i18nc("@button", "Manage printers")
|
||||
onClicked:
|
||||
{
|
||||
togglePopup()
|
||||
toggleContent()
|
||||
Cura.Actions.configureMachines.trigger()
|
||||
}
|
||||
}
|
||||
|
@ -83,7 +83,7 @@ Button
|
||||
|
||||
onClicked:
|
||||
{
|
||||
togglePopup()
|
||||
toggleContent()
|
||||
Cura.MachineManager.setActiveMachine(model.id)
|
||||
}
|
||||
|
||||
|
@ -120,7 +120,7 @@ Cura.ExpandableComponent
|
||||
|
||||
onClicked:
|
||||
{
|
||||
viewSelector.togglePopup()
|
||||
toggleContent()
|
||||
UM.Controller.setActiveView(id)
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user