From 664774f47498d15b78ea26e153ec8f210f743b16 Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 28 Feb 2022 12:53:50 +0300 Subject: [PATCH] Fix group call bar with requests bar. --- Telegram/SourceFiles/history/history_widget.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Telegram/SourceFiles/history/history_widget.cpp b/Telegram/SourceFiles/history/history_widget.cpp index 39f2ea80d..96138b7c4 100644 --- a/Telegram/SourceFiles/history/history_widget.cpp +++ b/Telegram/SourceFiles/history/history_widget.cpp @@ -1488,12 +1488,12 @@ void HistoryWidget::orderWidgets() { if (_pinnedBar) { _pinnedBar->raise(); } - if (_groupCallBar) { - _groupCallBar->raise(); - } if (_requestsBar) { _requestsBar->raise(); } + if (_groupCallBar) { + _groupCallBar->raise(); + } if (_chooseTheme) { _chooseTheme->raise(); }