IntValidator.qml 251 B

12345678910
  1. // Copyright (c) 2022 UltiMaker B.V.
  2. // Cura is released under the terms of the LGPLv3 or higher.
  3. import QtQuick 2.15
  4. RegularExpressionValidator
  5. {
  6. property int maxNumbers: 12
  7. regularExpression: new RegExp("^-?[0-9]{0,%0}$".arg(maxNumbers))
  8. }