Skip to content

Commit

Permalink
Merge pull request #114 from LucaBernstein/86-suggestions-reply-keyboard
Browse files Browse the repository at this point in the history
Align reply buttons in column
  • Loading branch information
LucaBernstein authored Mar 9, 2022
2 parents 59ff1a0 + 851f33e commit 9917863
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bot/suggestions.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ func (bc *BotController) suggestionsHelp(m *tb.Message, err error) {
errorMsg += fmt.Sprintf("Error executing your command: %s\n\n", err.Error())
}

suggestionsMenu.Inline(suggestionsMenu.Row(btnSuggListAccFrom, btnSuggListAccTo, btnSuggListTxDesc))
suggestionsMenu.Inline(
suggestionsMenu.Row(btnSuggListAccFrom),
suggestionsMenu.Row(btnSuggListAccTo),
suggestionsMenu.Row(btnSuggListTxDesc),
)

_, err = bc.Bot.Send(m.Sender, errorMsg+fmt.Sprintf(`Usage help for /suggestions:
/suggestions list <type>
Expand Down

0 comments on commit 9917863

Please sign in to comment.