mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-21 21:58:01 -06:00
Moved the prepareMenu into the prepare stage plugin
CURA-5772
This commit is contained in:
parent
10de312647
commit
7d5472b09f
2 changed files with 47 additions and 1 deletions
42
plugins/PrepareStage/PrepareMenu.qml
Normal file
42
plugins/PrepareStage/PrepareMenu.qml
Normal file
|
@ -0,0 +1,42 @@
|
|||
import QtQuick 2.7
|
||||
|
||||
import QtQuick.Controls 1.4
|
||||
|
||||
import UM 1.3 as UM
|
||||
import Cura 1.1 as Cura
|
||||
|
||||
|
||||
Row
|
||||
{
|
||||
spacing: UM.Theme.getSize("default_margin").width
|
||||
|
||||
UM.I18nCatalog
|
||||
{
|
||||
id: catalog
|
||||
name:"cura"
|
||||
}
|
||||
|
||||
Button
|
||||
{
|
||||
id: openFileButton;
|
||||
text: catalog.i18nc("@action:button", "Open File");
|
||||
iconSource: UM.Theme.getIcon("load")
|
||||
style: UM.Theme.styles.tool_button
|
||||
tooltip: ""
|
||||
action: Cura.Actions.open;
|
||||
}
|
||||
|
||||
Cura.MachineAndConfigurationSelector
|
||||
{
|
||||
}
|
||||
|
||||
Cura.MaterialAndVariantSelector
|
||||
{
|
||||
width: UM.Theme.getSize("sidebar").width
|
||||
}
|
||||
|
||||
Cura.ProfileAndSettingComponent
|
||||
{
|
||||
width: UM.Theme.getSize("sidebar").width
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue