fix: Removed setState from key listener dispose

This commit is contained in:
PartyDonut 2025-08-09 08:41:21 +02:00
parent 19f2b5473b
commit aefabb2dfd

View file

@ -29,7 +29,9 @@ class KeyCombinationWidgetState extends ConsumerState<KeyCombinationWidget> {
@override @override
void dispose() { void dispose() {
_stopListening(); _isListening = false;
_pressedKey = null;
_pressedModifier = null;
super.dispose(); super.dispose();
} }