diff options
Diffstat (limited to '')
| -rw-r--r-- | src/common/settings_common.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/common/settings_common.cpp b/src/common/settings_common.cpp index a7ce99515..fb42991fa 100644 --- a/src/common/settings_common.cpp +++ b/src/common/settings_common.cpp | |||
| @@ -42,4 +42,14 @@ const std::string& BasicSetting::GetLabel() const { | |||
| 42 | return label; | 42 | return label; |
| 43 | } | 43 | } |
| 44 | 44 | ||
| 45 | static bool configuring_global = true; | ||
| 46 | |||
| 47 | bool IsConfiguringGlobal() { | ||
| 48 | return configuring_global; | ||
| 49 | } | ||
| 50 | |||
| 51 | void SetConfiguringGlobal(bool is_global) { | ||
| 52 | configuring_global = is_global; | ||
| 53 | } | ||
| 54 | |||
| 45 | } // namespace Settings | 55 | } // namespace Settings |