Fix long voice chat title elision on macOS.

This commit is contained in:
John Preston 2021-03-15 19:34:47 +04:00
parent b2c87e7a73
commit fb04f33ae8
1 changed files with 1 additions and 1 deletions

View File

@ -951,7 +951,7 @@ QRect GroupPanel::computeTitleRect() const {
: 0);
const auto width = widget()->width();
#ifdef Q_OS_MAC
return QRect(70, 0, width - skip - 70, 28);
return QRect(70, 0, width - remove - 70, 28);
#else // Q_OS_MAC
const auto controls = _controls->geometry();
const auto right = controls.x() + controls.width() + skip;