Menu.qml 552 B

123456789101112131415161718192021222324
  1. // Copyright (c) 2021 Ultimaker B.V.
  2. // Cura is released under the terms of the LGPLv3 or higher.
  3. import QtQuick 2.7
  4. import QtQuick.Controls 2.3
  5. import UM 1.1 as UM
  6. //
  7. // Menu with Cura styling.
  8. //
  9. Menu
  10. {
  11. id: menu
  12. padding: 0
  13. implicitWidth: UM.Theme.getSize("setting_control").width
  14. width: Math.max.apply(Math, Object.values(contentChildren).map(function(c) { return c.width }))
  15. background: Rectangle {
  16. color: UM.Theme.getColor("setting_control")
  17. border.color: UM.Theme.getColor("setting_control_border")
  18. }
  19. }