Fixed ability to click on bot app button in narrowed chat list.

This commit is contained in:
23rd 2025-03-29 23:20:14 +03:00 committed by John Preston
parent fadaf852b7
commit 74b188fa46

View file

@ -1669,6 +1669,9 @@ void InnerWidget::clearIrrelevantState() {
bool InnerWidget::lookupIsInBotAppButton(
Row *row,
QPoint localPosition) {
if (_narrowRatio) {
return false;
}
if (const auto user = MaybeBotWithApp(row)) {
const auto it = _rightButtons.find(user->id);
if (it != _rightButtons.end()) {