From b8417f027702856cb453e6a0ce56a50e531038c0 Mon Sep 17 00:00:00 2001 From: edde746 <86283021+edde746@users.noreply.github.com> Date: Sat, 30 May 2026 08:48:03 +0200 Subject: [PATCH] style(downloads): apply dart format to download_utils.dart Merged via #1195 without formatting; aligns it with the repo's dart format pre-commit gate. --- lib/utils/download_utils.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/utils/download_utils.dart b/lib/utils/download_utils.dart index a127ddec..29312a43 100644 --- a/lib/utils/download_utils.dart +++ b/lib/utils/download_utils.dart @@ -73,7 +73,11 @@ Future showDownloadOptionsAndQueue( (icon: Symbols.download_rounded, label: t.downloads.allEpisodes, value: _DownloadChoice.all), (icon: Symbols.visibility_off_rounded, label: t.downloads.unwatchedOnly, value: _DownloadChoice.unwatched), (icon: Symbols.filter_5_rounded, label: t.downloads.nextNUnwatched(count: 5), value: _DownloadChoice.next5), - (icon: Symbols.filter_9_plus_rounded, label: t.downloads.nextNUnwatched(count: 10), value: _DownloadChoice.next10), + ( + icon: Symbols.filter_9_plus_rounded, + label: t.downloads.nextNUnwatched(count: 10), + value: _DownloadChoice.next10, + ), (icon: Symbols.tune_rounded, label: t.downloads.customAmount, value: _DownloadChoice.custom), ]; // Already-downloaded show/season: offer deletion as the last row.