diff --git a/internal/modules/misc/wheelofnames_command.go b/internal/modules/misc/wheelofnames_command.go index 62bea5a..e5b3f63 100644 --- a/internal/modules/misc/wheelofnames_command.go +++ b/internal/modules/misc/wheelofnames_command.go @@ -71,9 +71,11 @@ func wheelResultCaption(options []string, winner int) string { return `Result: ` + html.EscapeString(result) + `` } -// Non-breaking space: regular spaces at the caption edges get trimmed by -// Telegram, which would shrink the spoiler and reveal the winner's length. -const wheelCaptionPad = "\u00a0" +// Figure space: blank, non-breaking, and as wide as a digit, so in +// Telegram's proportional font one pad char roughly matches one letter; +// a regular space is far narrower and the spoiler width would still hint +// at the winner's length. +const wheelCaptionPad = "\u2007" // padWheelResultCaption prefixes shorter winners with blank padding so every // option renders a spoiler of equal length; otherwise the spoiler width