PrepareMain.qml 562 B

123456789101112131415161718192021222324
  1. //Copyright (c) 2020 Ultimaker B.V.
  2. //Cura is released under the terms of the LGPLv3 or higher.
  3. import QtQuick 2.4
  4. import QtQuick.Controls 1.2
  5. import QtQuick.Layouts 1.1
  6. import QtQuick.Controls.Styles 1.1
  7. import UM 1.0 as UM
  8. import Cura 1.0 as Cura
  9. Item
  10. {
  11. id: prepareMain
  12. Cura.ActionPanelWidget
  13. {
  14. id: actionPanelWidget
  15. anchors.right: parent.right
  16. anchors.bottom: parent.bottom
  17. anchors.rightMargin: UM.Theme.getSize("thick_margin").width
  18. anchors.bottomMargin: UM.Theme.getSize("thick_margin").height
  19. }
  20. }