EmptyViewMenuComponent.qml 619 B

123456789101112131415161718192021222324252627282930
  1. // Copyright (c) 2019 Ultimaker B.V.
  2. // Cura is released under the terms of the LGPLv3 or higher.
  3. import QtQuick 2.10
  4. import QtQuick.Controls 2.3
  5. import UM 1.2 as UM
  6. // Empty placeholder
  7. Rectangle
  8. {
  9. color: UM.Theme.getColor("disabled")
  10. /*
  11. TODO: Reimplement later
  12. DropShadow
  13. {
  14. id: shadow
  15. // Don't blur the shadow
  16. radius: 0
  17. anchors.fill: parent
  18. source: parent
  19. verticalOffset: 2
  20. visible: true
  21. color: UM.Theme.getColor("action_button_shadow")
  22. // Should always be drawn behind the background.
  23. z: parent.z - 1
  24. }*/
  25. }