mirror of
https://github.com/iSoron/uhabits.git
synced 2025-12-06 09:08:52 -06:00
Set minimum number of buttons
This commit is contained in:
@@ -250,6 +250,7 @@ class MainScreenController: UITableViewController, MainScreenDataSourceListener
|
|||||||
|
|
||||||
func computeNumberOfButtons(_ width: Double) {
|
func computeNumberOfButtons(_ width: Double) {
|
||||||
nButtons = Int((width - 220) / theme.checkmarkButtonSize)
|
nButtons = Int((width - 220) / theme.checkmarkButtonSize)
|
||||||
|
nButtons = max(nButtons, 3)
|
||||||
nButtons = min(nButtons, Int(dataSource.maxNumberOfButtons))
|
nButtons = min(nButtons, Int(dataSource.maxNumberOfButtons))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user