ViewOrientationButton.qml 432 B

123456789101112131415
  1. // Copyright (c) 2018 Ultimaker B.V.
  2. // Cura is released under the terms of the LGPLv3 or higher.
  3. import QtQuick 2.2
  4. import UM 1.4 as UM
  5. UM.SimpleButton
  6. {
  7. width: UM.Theme.getSize("small_button").width
  8. height: UM.Theme.getSize("small_button").height
  9. hoverColor: UM.Theme.getColor("small_button_text_hover")
  10. color: UM.Theme.getColor("small_button_text")
  11. iconMargin: 0.5 * UM.Theme.getSize("wide_lining").width
  12. }