thunderbird-patch-review
Simple email patch review tool for Thunderbird
git clone git://mccd.space/thunderbird-patch-reviewcommit e11ece8e417713cc5f0fc930bb7c4dab3edece79
parent 7b98d893ab15ffdb1aaa7989ceba09f9509de5fd
Author: Marc <marc@coquand.email>
Date: Mon, 20 Jul 2026 11:14:18 +0200
Correct icon for refresh
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/extension/review/review.js b/extension/review/review.js
@@ -678,7 +678,7 @@ async function refreshApplyState() {
// can retry after fixing the cause without re-picking the repo. The
// 🗘 glyph signals that. Modify still applies, so leave it disabled.
apply.disabled = false;
- apply.textContent = "✖ Apply \u{1F5D9}";
+ apply.textContent = "✖ Apply ⟳";
apply.title =
"This series does not apply cleanly to the repository.\n\n" +
(response.output || "(no detail)") +
@@ -692,7 +692,7 @@ async function refreshApplyState() {
// (click re-checks); Modify still applies, so it stays disabled.
apply.classList.add("state-dirty");
apply.disabled = false;
- apply.textContent = "âš Apply \u{1F5D9}";
+ apply.textContent = "⚠Apply ⟳";
apply.title =
"The repository has uncommitted changes; git am will refuse until you commit or stash them.\n\n" +
(response.output || "(no detail)") +