SidebarSettings.qml 411 B

123456789101112131415161718192021
  1. // Copyright (c) 2017 Ultimaker B.V.
  2. // Cura is released under the terms of the LGPLv3 or higher.
  3. import QtQuick 2.2
  4. Sidebar
  5. {
  6. id: sidebarSettings
  7. property bool showPrintMonitor: false
  8. anchors {
  9. top: parent.top
  10. bottom: parent.bottom
  11. left: parent.left
  12. right: parent.right
  13. }
  14. width: parent.width
  15. monitoringPrint: showPrintMonitor
  16. }