feat: add quality options to include 2160p, 1440p, and a best setting.

This commit is contained in:
2026-05-17 12:30:06 +03:00
parent a1217a78c3
commit 988c938a9e
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -433,7 +433,7 @@ class _PlaylistCard(QtWidgets.QFrame):
self._mode.setCurrentText(row.download_mode or "video")
self._quality = QtWidgets.QComboBox()
self._quality.addItems(["1080p", "720p", "480p", "360p"])
self._quality.addItems(["best", "2160p", "1440p", "1080p", "720p", "480p", "360p"])
self._quality.setEditable(False)
self._quality.setCurrentText(row.max_download_quality or "1080p")