Fix text input of velocity setting values

See: #357
This commit is contained in:
Jonathan G Rennison
2022-01-11 21:17:19 +00:00
parent eab98e4808
commit a64a6aeeb8
3 changed files with 9 additions and 3 deletions

View File

@@ -32,6 +32,7 @@ enum SettingFlag : uint32 {
SF_NO_NEWGAME = 1 << 15, ///< the setting does not apply and is not shown in a new game context
SF_DEC1SCALE = 1 << 16, ///< also display a float representation of the scale of a decimal1 scale parameter
SF_RUN_CALLBACKS_ON_PARSE = 1 << 17, ///< run callbacks when parsing from config file
SF_GUI_VELOCITY = 1 << 18, ///< setting value is a velocity
};
DECLARE_ENUM_AS_BIT_SET(SettingFlag)