From ff44a1f575bc6c2988c64ccee9e7310c154f5026 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Tue, 11 Mar 2025 03:26:40 -0400 Subject: [PATCH] Tweak browser button and label widths to fit translations. --- src/app/Browser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/Browser.cpp b/src/app/Browser.cpp index bfa71323..757a06ee 100644 --- a/src/app/Browser.cpp +++ b/src/app/Browser.cpp @@ -526,13 +526,13 @@ struct Browser : widget::OpaqueWidget { headerLayout->addChild(favoriteButton); clearButton = new ClearButton; - clearButton->box.size.x = 100; + clearButton->box.size.x = 130; clearButton->text = string::translate("Browser.resetFilters"); clearButton->browser = this; headerLayout->addChild(clearButton); countLabel = new ui::Label; - countLabel->box.size.x = 100; + countLabel->box.size.x = 110; headerLayout->addChild(countLabel); SortButton* sortButton = new SortButton;