appcenter icon indicating copy to clipboard operation
appcenter copied to clipboard

Allow enable/disable of tweak without respring

Open conath opened this issue 7 years ago • 0 comments

Currently the isTweakEnabled gets checked in CCUIControlCenterViewController _loadPages:

- (void)_loadPages {
  LoadPrefs();
  if (!isTweakEnabled) {
    %orig;
    return;
  }
// else load tweak into CC …

This requires a respring to be called again (according to brief testing).

conath avatar Feb 09 '17 00:02 conath