performance #663

Merged
sarah merged 4 commits from performance into trunk 2023-04-18 21:14:59 +00:00
1 changed files with 7 additions and 1 deletions
Showing only changes of commit cbe78ff2a7 - Show all commits

View File

@ -70,7 +70,13 @@ class Settings extends ChangeNotifier {
String get torCacheDir => _torCacheDir;
// Whether to show the profiling interface, not saved
bool profileMode = false;
bool _profileMode = false;
bool get profileMode => _profileMode;
set profileMode(bool newval) {
this._profileMode = newval;
notifyListeners();
}
set useSemanticDebugger(bool newval) {
this._useSemanticDebugger = newval;