TextField.qml 336 B

123456789101112131415
  1. // Copyright (c) 2022 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.7 as UM
  6. import Cura 1.1 as Cura
  7. UM.TextField
  8. {
  9. id: control
  10. height: UM.Theme.getSize("setting_control").height
  11. leftPadding: UM.Theme.getSize("thin_margin").width
  12. }