3

I'm using the Enthought Traits/UI system and would like to enforce a minimum value on a Float trait, which appears in the GUI and is editable by the user.

dbanas
  • 1,309
  • 9
  • 16

1 Answers1

3

Use a Range trait instead. Range(low=minimum_value)

Robert Kern
  • 11,753
  • 3
  • 31
  • 30