forked from organicmaps/organicmaps
[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:
parent
6879db4472
commit
96608e08ac
1 changed files with 2 additions and 3 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Reference in a new issue