From f218f4809828aa99f0f0749c46330bfa8d3fbed4 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sat, 11 Dec 2021 17:59:04 -0500 Subject: [PATCH] Truncate browser's BrandButton more. --- src/app/Browser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/Browser.cpp b/src/app/Browser.cpp index 62750f86..58695f91 100644 --- a/src/app/Browser.cpp +++ b/src/app/Browser.cpp @@ -905,7 +905,7 @@ inline void BrandButton::step() { text += ": "; text += browser->brand; } - text = string::ellipsize(text, 21); + text = string::ellipsize(text, 20); ChoiceButton::step(); }