diff --git a/ios/Application/Frontend/MainScreenController.swift b/ios/Application/Frontend/MainScreenController.swift index 43ee64223..45157a8d3 100644 --- a/ios/Application/Frontend/MainScreenController.swift +++ b/ios/Application/Frontend/MainScreenController.swift @@ -250,6 +250,7 @@ class MainScreenController: UITableViewController, MainScreenDataSourceListener func computeNumberOfButtons(_ width: Double) { nButtons = Int((width - 220) / theme.checkmarkButtonSize) + nButtons = max(nButtons, 3) nButtons = min(nButtons, Int(dataSource.maxNumberOfButtons)) }