Ref T776, renamed some matching settings

* the forced values did not force anything
* also adjusted UI form
This commit is contained in:
Klaus Basan
2020-03-15 22:36:30 +01:00
committed by Mat Sutcliffe
parent 1da66ce6e9
commit 2607ebd7c6
5 changed files with 93 additions and 93 deletions

View File

@@ -39,9 +39,9 @@ namespace BlackMisc
ByLivery = 1 << 3,
ByCombinedType = 1 << 4,
ByManufacturer = 1 << 5,
ByForceMilitary = 1 << 6, //!< military (in) will only search in military
ByForceCivilian = 1 << 7, //!< civilian (in) will only search in civilian
ByMilitary = ByForceCivilian | ByForceMilitary,
ByMilitary = 1 << 6, //!< military (in) will only search in military
ByCivilian = 1 << 7, //!< civilian (in) will only search in civilian
ByMilOrCivilian = ByCivilian | ByMilitary,
ByVtol = 1 << 8,
ByIcaoOrderAircraftFirst = (1 << 9) | ByIcaoData,
ByIcaoOrderAirlineFirst = (1 << 10) | ByIcaoData,
@@ -75,7 +75,7 @@ namespace BlackMisc
// --- others ---
ModeNone = 0,
ModeByFLags = ByMilitary | ByVtol,
ModeByFLags = ByMilOrCivilian | ByVtol,
// default mode for set handling
ModeDefaultSet = ModelSetRemoveFailedModel | ModelVerificationAtStartup | ModelFailoverIfNoModelCanBeAdded,