[ios] refactor the 4th button in the PP action bar

When there are only the one additional button it will set as 4th instead of More in PP action bar

Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
Kiryl Kaveryn 2024-07-30 12:27:13 +04:00 committed by Roman Tsisyk
parent 6879db4472
commit 96608e08ac

View file

@ -151,9 +151,8 @@ class ActionBarViewController: UIViewController {
}
private func configButton4() {
if !additionalButtons.isEmpty {
visibleButtons.append(.more)
}
guard !additionalButtons.isEmpty else { return }
additionalButtons.count == 1 ? visibleButtons.append(additionalButtons[0]) : visibleButtons.append(.more)
}
private func showMore() {