mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
23 lines
No EOL
434 B
QML
23 lines
No EOL
434 B
QML
// Copyright (c) 2016 Ultimaker B.V.
|
|
// Cura is released under the terms of the AGPLv3 or higher.
|
|
|
|
import QtQuick 2.2
|
|
import QtQuick.Controls 1.1
|
|
import QtQuick.Layouts 1.1
|
|
import QtQuick.Window 2.1
|
|
|
|
import UM 1.2 as UM
|
|
import Cura 1.0 as Cura
|
|
|
|
|
|
Cura.MachineAction
|
|
{
|
|
anchors.fill: parent;
|
|
Item
|
|
{
|
|
id: bedLevelMachineAction
|
|
anchors.fill: parent;
|
|
|
|
UM.I18nCatalog { id: catalog; name: "cura"; }
|
|
}
|
|
} |