SettingUnknown.qml 383 B

12345678910111213141516171819
  1. // Copyright (c) 2015 Ultimaker B.V.
  2. // Uranium is released under the terms of the LGPLv3 or higher.
  3. import QtQuick 2.2
  4. import QtQuick.Controls 2.1
  5. import UM 1.2 as UM
  6. SettingItem
  7. {
  8. contents: Label
  9. {
  10. anchors.fill: parent
  11. text: value + " " + unit;
  12. color: UM.Theme.getColor("setting_control_text")
  13. verticalAlignment: Qt.AlignVCenter
  14. }
  15. }