Fix volume widget position.

Fixes #5467.
This commit is contained in:
John Preston 2019-01-17 12:17:38 +04:00
parent 548a0c8517
commit 0d6a36e187
1 changed files with 5 additions and 1 deletions

View File

@ -87,7 +87,11 @@ VolumeWidget::VolumeWidget(QWidget *parent) : TWidget(parent)
}
QMargins VolumeWidget::getMargin() const {
return QMargins(st::mediaPlayerVolumeMargin, st::mediaPlayerPlayback.fullWidth, st::mediaPlayerVolumeMargin, st::mediaPlayerVolumeMargin);
const auto top = st::mediaPlayerHeight
+ st::lineWidth
- st::mediaPlayerPlayTop
- st::mediaPlayerVolumeToggle.height;
return QMargins(st::mediaPlayerVolumeMargin, top, st::mediaPlayerVolumeMargin, st::mediaPlayerVolumeMargin);
}
bool VolumeWidget::overlaps(const QRect &globalRect) {