From 8694b3b4104760aaa87d85610b5eef44e2c12201 Mon Sep 17 00:00:00 2001 From: Luc Mcgrady Date: Thu, 22 May 2025 13:55:15 +0100 Subject: [PATCH] Use non breaking spaces for names on about page (#4025) * use non breaking spaces for names on about page * Update qt/aqt/about.py Co-authored-by: llama --------- Co-authored-by: llama --- qt/aqt/about.py | 1 + 1 file changed, 1 insertion(+) diff --git a/qt/aqt/about.py b/qt/aqt/about.py index bf34e4395..a71d36ca0 100644 --- a/qt/aqt/about.py +++ b/qt/aqt/about.py @@ -225,6 +225,7 @@ def show(mw: aqt.AnkiQt) -> QDialog: ) ) + allusers = [user.replace(" ", " ") for user in allusers] abouttext += "

" + tr.about_written_by_damien_elmes_with_patches( cont=", ".join(allusers) + f", {tr.about_and_others()}" )