mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-12-02 07:11:22 -07:00
Added grouping action
This commit is contained in:
parent
c6f5ceaf56
commit
2683fa0958
3 changed files with 27 additions and 0 deletions
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
import QtQuick 2.2
|
||||
import QtQuick.Controls 1.1
|
||||
import UM 1.0 as UM
|
||||
|
||||
Item {
|
||||
property alias open: openAction;
|
||||
|
|
@ -16,6 +17,7 @@ Item {
|
|||
|
||||
property alias deleteObject: deleteObjectAction;
|
||||
property alias centerObject: centerObjectAction;
|
||||
property alias groupObjects: groupObjectsAction;
|
||||
property alias multiplyObject: multiplyObjectAction;
|
||||
property alias splitObject: splitObjectAction;
|
||||
|
||||
|
|
@ -120,6 +122,13 @@ Item {
|
|||
//: Center object action
|
||||
text: qsTr("Center Object on Platform");
|
||||
}
|
||||
|
||||
Action
|
||||
{
|
||||
id: groupObjectsAction
|
||||
text: qsTr("Group objects");
|
||||
enabled: UM.Scene.numObjectsSelected > 1 ? true: false
|
||||
}
|
||||
|
||||
Action {
|
||||
id: multiplyObjectAction;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue