From 12635f4cd29434dedb1240fba111eee54c87bb3c Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 15 Jul 2025 18:25:11 +0700 Subject: [PATCH] Show Chromium version in About instead of PyQt version --- qt/aqt/about.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qt/aqt/about.py b/qt/aqt/about.py index 228d3cfeb..828506fa6 100644 --- a/qt/aqt/about.py +++ b/qt/aqt/about.py @@ -70,10 +70,10 @@ def show(mw: aqt.AnkiQt) -> QDialog: abouttext += f"

{lede}" abouttext += f"

{tr.about_anki_is_licensed_under_the_agpl3()}" abouttext += f"

{tr.about_version(val=version_with_build())}
" - abouttext += ("Python %s Qt %s PyQt %s
") % ( + abouttext += ("Python %s Qt %s Chromium %s
") % ( platform.python_version(), qVersion(), - PYQT_VERSION_STR, + qWebEngineChromiumVersion().split(".")[0], ) abouttext += ( without_unicode_isolation(tr.about_visit_website(val=aqt.appWebsite))