From 205255b91666bb27b301ab86d386568a97c7f4da Mon Sep 17 00:00:00 2001 From: Vadim Date: Thu, 6 Jul 2023 18:15:20 +0200 Subject: [PATCH] cleanup --- .../shared/volume_keys_notifier/notifier_volume_keys.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/screens/metering/components/shared/volume_keys_notifier/notifier_volume_keys.dart b/lib/screens/metering/components/shared/volume_keys_notifier/notifier_volume_keys.dart index 17e35f2..df64fdf 100644 --- a/lib/screens/metering/components/shared/volume_keys_notifier/notifier_volume_keys.dart +++ b/lib/screens/metering/components/shared/volume_keys_notifier/notifier_volume_keys.dart @@ -10,7 +10,6 @@ class VolumeKeysNotifier extends ChangeNotifier with RouteAware { VolumeKey _value = VolumeKey.up; VolumeKeysNotifier(this.volumeEventsService) { - // TODO: add RouteObserver and disable overriden action if SettingScreen is opened _volumeKeysSubscription = volumeEventsService .volumeButtonsEventStream() .map((event) => event == 24 ? VolumeKey.up : VolumeKey.down)