Fix #10023: Allow negative input in text fields when needed (#10112)

This commit is contained in:
hallonsoda79
2022-11-02 20:54:07 +01:00
committed by GitHub
parent 71663bbaee
commit 0d51460f27
3 changed files with 11 additions and 6 deletions

View File

@@ -27,6 +27,7 @@ enum CharSetFilter {
CS_ALPHANUMERAL, ///< Both numeric and alphabetic and spaces and stuff
CS_NUMERAL, ///< Only numeric ones
CS_NUMERAL_SPACE, ///< Only numbers and spaces
CS_NUMERAL_SIGNED, ///< Only numbers and '-' for negative values
CS_ALPHA, ///< Only alphabetic values
CS_HEXADECIMAL, ///< Only hexadecimal characters
};