Add settings filter to only show non-vanilla settings
This commit is contained in:
@@ -62,14 +62,17 @@ enum SettingCategory {
|
||||
SC_BASIC_LIST = 1 << 0, ///< Settings displayed in the list of basic settings.
|
||||
SC_ADVANCED_LIST = 1 << 1, ///< Settings displayed in the list of advanced settings.
|
||||
SC_EXPERT_LIST = 1 << 2, ///< Settings displayed in the list of expert settings.
|
||||
SC_PATCH_LIST = 1 << 3, ///< Settings displayed in the list of non-vanilla settings.
|
||||
|
||||
/* Setting classification */
|
||||
SC_BASIC = SC_BASIC_LIST | SC_ADVANCED_LIST | SC_EXPERT_LIST, ///< Basic settings are part of all lists.
|
||||
SC_ADVANCED = SC_ADVANCED_LIST | SC_EXPERT_LIST, ///< Advanced settings are part of advanced and expert list.
|
||||
SC_EXPERT = SC_EXPERT_LIST, ///< Expert settings can only be seen in the expert list.
|
||||
SC_PATCH = SC_PATCH_LIST, ///< Patch settings which are shown in the patch list.
|
||||
|
||||
SC_END,
|
||||
};
|
||||
DECLARE_ENUM_AS_BIT_SET(SettingCategory)
|
||||
|
||||
/**
|
||||
* Type of settings for filtering.
|
||||
|
Reference in New Issue
Block a user