diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 5f12e1956..496f11855 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -238,7 +238,7 @@ Bradley Szoke jcznk Thomas Rixen Siyuan Mattuwu Yan -Lee Doughty +Lee Doughty <32392044+leedoughty@users.noreply.github.com> memchr ******************** diff --git a/qt/aqt/sound.py b/qt/aqt/sound.py index e62786871..acf531efb 100644 --- a/qt/aqt/sound.py +++ b/qt/aqt/sound.py @@ -32,6 +32,7 @@ from aqt._macos_helper import macos_helper from aqt.mpv import MPV, MPVBase, MPVCommandError from aqt.qt import * from aqt.taskman import TaskManager +from aqt.theme import theme_manager from aqt.utils import ( disable_help_button, restoreGeom, @@ -743,7 +744,7 @@ class RecordDialog(QDialog): def _setup_dialog(self) -> None: self.setWindowTitle("Anki") icon = QLabel() - qicon = QIcon("icons:media-record.svg") + qicon = theme_manager.icon_from_resources("icons:media-record.svg") icon.setPixmap(qicon.pixmap(60, 60)) self.label = QLabel("...") hbox = QHBoxLayout()