From b3f21a6174149a4a618daa4846baeff31ccac496 Mon Sep 17 00:00:00 2001 From: yrriban Date: Sun, 2 Aug 2026 22:38:51 -0400 Subject: [PATCH] Ask yes or no if the screenshot was too small. Previously this was retry or abort but those are less clear answers to the question posed, "Try again?" --- doomcc/ss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doomcc/ss.py b/doomcc/ss.py index 835dd00..6c7dad2 100644 --- a/doomcc/ss.py +++ b/doomcc/ss.py @@ -23,7 +23,7 @@ class SS(doomcc.doom_base.WadMap): with wand.image.Image(width=width, height=height, pseudo="x:") as img: img.reset_coords() if img.width < width or img.height < height: - if not messagebox.askretrycancel( + if not messagebox.askyesno( title="Doom Command Center", message=f"Image too small ({img.width}x{img.height})." + "Try again?",