mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-12-30 03:00:27 -07:00
27 lines
No EOL
543 B
QML
27 lines
No EOL
543 B
QML
// Copyright (c) 2018 Ultimaker B.V.
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.10
|
|
import QtQuick.Controls 2.0
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import UM 1.2 as UM
|
|
import Cura 1.0 as Cura
|
|
Component
|
|
{
|
|
Item
|
|
{
|
|
Rectangle
|
|
{
|
|
anchors.right: parent.right
|
|
width: parent.width * 0.3
|
|
anchors.top: parent.top
|
|
anchors.bottom: parent.bottom
|
|
|
|
Cura.PrintMonitor
|
|
{
|
|
anchors.fill: parent
|
|
}
|
|
}
|
|
}
|
|
} |