mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Update microphone icon to respect dark mode (#4297)
This commit is contained in:
parent
ef1a1deb9c
commit
65ea013270
2 changed files with 3 additions and 2 deletions
|
@ -238,7 +238,7 @@ Bradley Szoke <bradleyszoke@gmail.com>
|
||||||
jcznk <https://github.com/jcznk>
|
jcznk <https://github.com/jcznk>
|
||||||
Thomas Rixen <thomas.rixen@student.uclouvain.be>
|
Thomas Rixen <thomas.rixen@student.uclouvain.be>
|
||||||
Siyuan Mattuwu Yan <syan4@ualberta.ca>
|
Siyuan Mattuwu Yan <syan4@ualberta.ca>
|
||||||
Lee Doughty <https://github.com/leedoughty>
|
Lee Doughty <32392044+leedoughty@users.noreply.github.com>
|
||||||
memchr <memchr@proton.me>
|
memchr <memchr@proton.me>
|
||||||
|
|
||||||
********************
|
********************
|
||||||
|
|
|
@ -32,6 +32,7 @@ from aqt._macos_helper import macos_helper
|
||||||
from aqt.mpv import MPV, MPVBase, MPVCommandError
|
from aqt.mpv import MPV, MPVBase, MPVCommandError
|
||||||
from aqt.qt import *
|
from aqt.qt import *
|
||||||
from aqt.taskman import TaskManager
|
from aqt.taskman import TaskManager
|
||||||
|
from aqt.theme import theme_manager
|
||||||
from aqt.utils import (
|
from aqt.utils import (
|
||||||
disable_help_button,
|
disable_help_button,
|
||||||
restoreGeom,
|
restoreGeom,
|
||||||
|
@ -743,7 +744,7 @@ class RecordDialog(QDialog):
|
||||||
def _setup_dialog(self) -> None:
|
def _setup_dialog(self) -> None:
|
||||||
self.setWindowTitle("Anki")
|
self.setWindowTitle("Anki")
|
||||||
icon = QLabel()
|
icon = QLabel()
|
||||||
qicon = QIcon("icons:media-record.svg")
|
qicon = theme_manager.icon_from_resources("icons:media-record.svg")
|
||||||
icon.setPixmap(qicon.pixmap(60, 60))
|
icon.setPixmap(qicon.pixmap(60, 60))
|
||||||
self.label = QLabel("...")
|
self.label = QLabel("...")
|
||||||
hbox = QHBoxLayout()
|
hbox = QHBoxLayout()
|
||||||
|
|
Loading…
Reference in a new issue