mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-03 12:03:57 -06:00
Fix some leftover renamings
Contributes to CURA-5941
This commit is contained in:
parent
e159cbdb1a
commit
4dcce7616b
6 changed files with 9 additions and 9 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue