You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
331 B

  1. namespace IPA.Config
  2. {
  3. public static class ConfigWatchersHelper
  4. {
  5. public static void ToggleWatchers()
  6. {
  7. foreach (var watcher in ConfigRuntime.GetWatchers())
  8. {
  9. watcher.EnableRaisingEvents = !watcher.EnableRaisingEvents;
  10. }
  11. }
  12. }
  13. }