From 4f02f722ae3cc08b9bd8929bd6ecfe5740cc0f3c Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 19 Nov 2021 16:42:14 +0400 Subject: [PATCH] Fix order of playlist and volume / settings dropdowns. --- Telegram/SourceFiles/mainwidget.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Telegram/SourceFiles/mainwidget.cpp b/Telegram/SourceFiles/mainwidget.cpp index 6d1109ac0..5a4f77046 100644 --- a/Telegram/SourceFiles/mainwidget.cpp +++ b/Telegram/SourceFiles/mainwidget.cpp @@ -1835,12 +1835,6 @@ void MainWidget::orderWidgets() { if (_callTopBar) { _callTopBar->raise(); } - if (_playerVolume) { - _playerVolume->raise(); - } - if (_playerRepeat) { - _playerRepeat->raise(); - } _sideShadow->raise(); if (_thirdShadow) { _thirdShadow->raise(); @@ -1852,8 +1846,14 @@ void MainWidget::orderWidgets() { _thirdColumnResizeArea->raise(); } _connecting->raise(); - _playerPlaylist->raise(); floatPlayerRaiseAll(); + _playerPlaylist->raise(); + if (_playerVolume) { + _playerVolume->raise(); + } + if (_playerRepeat) { + _playerRepeat->raise(); + } if (_hider) _hider->raise(); }