mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 23:23:57 -06:00
Added several ids to be used in integration tests:
-Marketplace, printer pref, add/manage printer from main mnu, print settings
This commit is contained in:
parent
d4b17735ad
commit
18630fa2f1
4 changed files with 8 additions and 0 deletions
|
@ -36,6 +36,7 @@ UM.ManagementPage
|
|||
buttons: [
|
||||
Button
|
||||
{
|
||||
id: activateMenuButton
|
||||
text: catalog.i18nc("@action:button", "Activate");
|
||||
iconName: "list-activate";
|
||||
enabled: base.currentItem != null && base.currentItem.id != Cura.MachineManager.activeMaterialId
|
||||
|
@ -43,12 +44,14 @@ UM.ManagementPage
|
|||
},
|
||||
Button
|
||||
{
|
||||
id: addMenuButton
|
||||
text: catalog.i18nc("@action:button", "Add");
|
||||
iconName: "list-add";
|
||||
onClicked: Cura.Actions.addMachine.trigger()
|
||||
},
|
||||
Button
|
||||
{
|
||||
id: removeMenuButton
|
||||
text: catalog.i18nc("@action:button", "Remove");
|
||||
iconName: "list-remove";
|
||||
enabled: base.currentItem != null && model.count > 1
|
||||
|
@ -56,6 +59,7 @@ UM.ManagementPage
|
|||
},
|
||||
Button
|
||||
{
|
||||
id: renameMenuButton
|
||||
text: catalog.i18nc("@action:button", "Rename");
|
||||
iconName: "edit-rename";
|
||||
enabled: base.currentItem != null && base.currentItem.metadata.group_name == null
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue