ViewOrientationButton.qml 372 B

1234567891011121314
  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. }