Skip to content

Commit

Permalink
Merge pull request freqtrade#4313 from raoulbuzziol/develop
Browse files Browse the repository at this point in the history
setting resize_keyboard=True for slightly smaller Telegram buttons
  • Loading branch information
xmatthias authored Feb 4, 2021
2 parents 19e43e2 + 99b2214 commit 17e1cfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion freqtrade/rpc/telegram.py
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,7 @@ def _send_msg(self, msg: str, parse_mode: str = ParseMode.MARKDOWN,
:param parse_mode: telegram parse mode
:return: None
"""
reply_markup = ReplyKeyboardMarkup(self._keyboard)
reply_markup = ReplyKeyboardMarkup(self._keyboard, resize_keyboard=True)
try:
try:
self._updater.bot.send_message(
Expand Down

0 comments on commit 17e1cfb

Please sign in to comment.