Fix some leftover renamings

Contributes to CURA-5941
This commit is contained in:
Diego Prado Gesto 2018-12-04 13:21:26 +01:00
parent e159cbdb1a
commit 4dcce7616b
6 changed files with 9 additions and 9 deletions

View file

@ -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
{ {

View file

@ -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")
} }

View file

@ -93,7 +93,7 @@ Item
background: Item {} background: Item {}
onClicked: togglePopup() // Will hide the popup item onClicked: toggleContent() // Will hide the popup item
} }
} }

View file

@ -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()
} }
} }

View file

@ -83,7 +83,7 @@ Button
onClicked: onClicked:
{ {
togglePopup() toggleContent()
Cura.MachineManager.setActiveMachine(model.id) Cura.MachineManager.setActiveMachine(model.id)
} }

View file

@ -120,7 +120,7 @@ Cura.ExpandableComponent
onClicked: onClicked:
{ {
viewSelector.togglePopup() toggleContent()
UM.Controller.setActiveView(id) UM.Controller.setActiveView(id)
} }
} }