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 loggedIn: false
|
||||||
property var profileImage: ""
|
property var profileImage: ""
|
||||||
|
|
||||||
padding: 2 * UM.Theme.getSize("default_margin").height
|
padding: UM.Theme.getSize("wide_margin").height
|
||||||
spacing: 2 * UM.Theme.getSize("default_margin").height
|
spacing: UM.Theme.getSize("wide_margin").height
|
||||||
|
|
||||||
AvatarImage
|
AvatarImage
|
||||||
{
|
{
|
||||||
|
|
|
@ -139,8 +139,8 @@ Item
|
||||||
sourceSize.width: width
|
sourceSize.width: width
|
||||||
sourceSize.height: height
|
sourceSize.height: height
|
||||||
visible: source != ""
|
visible: source != ""
|
||||||
width: height
|
width: UM.Theme.getSize("standard_arrow").width
|
||||||
height: Math.round(0.2 * base.height)
|
height: UM.Theme.getSize("standard_arrow").height
|
||||||
color: UM.Theme.getColor("text")
|
color: UM.Theme.getColor("text")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -93,7 +93,7 @@ Item
|
||||||
|
|
||||||
background: 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")
|
text: catalog.i18nc("@button", "Add printer")
|
||||||
onClicked:
|
onClicked:
|
||||||
{
|
{
|
||||||
togglePopup()
|
toggleContent()
|
||||||
Cura.Actions.addMachine.trigger()
|
Cura.Actions.addMachine.trigger()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -146,7 +146,7 @@ Cura.ExpandableComponent
|
||||||
text: catalog.i18nc("@button", "Manage printers")
|
text: catalog.i18nc("@button", "Manage printers")
|
||||||
onClicked:
|
onClicked:
|
||||||
{
|
{
|
||||||
togglePopup()
|
toggleContent()
|
||||||
Cura.Actions.configureMachines.trigger()
|
Cura.Actions.configureMachines.trigger()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -83,7 +83,7 @@ Button
|
||||||
|
|
||||||
onClicked:
|
onClicked:
|
||||||
{
|
{
|
||||||
togglePopup()
|
toggleContent()
|
||||||
Cura.MachineManager.setActiveMachine(model.id)
|
Cura.MachineManager.setActiveMachine(model.id)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -120,7 +120,7 @@ Cura.ExpandableComponent
|
||||||
|
|
||||||
onClicked:
|
onClicked:
|
||||||
{
|
{
|
||||||
viewSelector.togglePopup()
|
toggleContent()
|
||||||
UM.Controller.setActiveView(id)
|
UM.Controller.setActiveView(id)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue