mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
15.10 adds a ManageProfilesAction
Moves it from the button to the bottom of the menu Contributes to: issue CURA-60
This commit is contained in:
parent
a839371832
commit
d6fde94e92
4 changed files with 49 additions and 30 deletions
|
|
@ -301,9 +301,9 @@ UM.MainWindow
|
|||
anchors
|
||||
{
|
||||
top: parent.top;
|
||||
topMargin: UM.Theme.sizes.loadfile_margin.height
|
||||
//topMargin: UM.Theme.sizes.loadfile_margin.height
|
||||
left: parent.left;
|
||||
leftMargin: UM.Theme.sizes.loadfile_margin.width
|
||||
//leftMargin: UM.Theme.sizes.loadfile_margin.width
|
||||
}
|
||||
action: actions.open;
|
||||
}
|
||||
|
|
@ -393,6 +393,7 @@ UM.MainWindow
|
|||
|
||||
addMachineAction: actions.addMachine;
|
||||
configureMachinesAction: actions.configureMachines;
|
||||
manageProfilesAction: actions.manageProfiles;
|
||||
}
|
||||
|
||||
Rectangle
|
||||
|
|
@ -503,6 +504,7 @@ UM.MainWindow
|
|||
|
||||
preferences.onTriggered: preferences.visible = true;
|
||||
configureMachines.onTriggered: { preferences.visible = true; preferences.setPage(2); }
|
||||
manageProfiles.onTriggered: { preferences.visible = true; preferences.setPage(4); }
|
||||
|
||||
documentation.onTriggered: CuraActions.openDocumentation();
|
||||
reportBug.onTriggered: CuraActions.openBugReportPage();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue