mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 07:33:57 -06:00
Add title to machine action window
This commit is contained in:
parent
a2fa8246b6
commit
7d65e0d62b
1 changed files with 5 additions and 4 deletions
|
@ -87,12 +87,13 @@ UM.ManagementPage
|
||||||
|
|
||||||
Button
|
Button
|
||||||
{
|
{
|
||||||
text: machineActionRepeater.model[index].label;
|
text: machineActionRepeater.model[index].label
|
||||||
onClicked:
|
onClicked:
|
||||||
{
|
{
|
||||||
actionDialog.content = machineActionRepeater.model[index].displayItem
|
actionDialog.content = machineActionRepeater.model[index].displayItem;
|
||||||
machineActionRepeater.model[index].displayItem.reset()
|
machineActionRepeater.model[index].displayItem.reset();
|
||||||
actionDialog.show()
|
actionDialog.title = machineActionRepeater.model[index].label;
|
||||||
|
actionDialog.show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue