fix: dispose TextEditingControllers in settings dialogs

This commit is contained in:
edde746
2026-04-06 16:43:04 +02:00
parent b3cf4ebf12
commit 010ace58fa
3 changed files with 10 additions and 3 deletions
+4 -1
View File
@@ -578,7 +578,10 @@ class _SettingsScreenState extends State<SettingsScreen> with FocusableTab {
],
);
},
).then((_) => saveFocusNode.dispose());
).then((_) {
controller.dispose();
saveFocusNode.dispose();
});
}
void _showClearCacheDialog() {