Fix shadow below Chats/Channels.

This commit is contained in:
John Preston 2024-04-22 12:35:08 +04:00
parent 1448cea01c
commit 287d5a7413
1 changed files with 1 additions and 1 deletions

View File

@ -902,7 +902,7 @@ void Suggestions::setupTabs() {
_tabs->sizeValue() | rpl::start_with_next([=](QSize size) {
const auto line = st::lineWidth;
shadow->setGeometry(0, size.height() - line, width(), line);
shadow->setGeometry(0, size.height() - line, size.width(), line);
}, shadow->lifetime());
shadow->showOn(_tabs->shownValue());