Massive UI revamping (v7): FramelessWindowResizer: prevent horizontal expansion of horizontally fixed widgets. Part of #1209

This commit is contained in:
f4exb 2022-04-23 18:46:08 +02:00
parent c803788dbb
commit ee6de48402
1 changed files with 5 additions and 0 deletions

View File

@ -181,6 +181,11 @@ void FramelessWindowResizer::mouseMoveEvent(QMouseEvent* event)
size.setHeight(m_widget->height());
}
// Prevent horizontal expansion of horizontal fixed widgets
if (m_widget->sizePolicy().horizontalPolicy() == QSizePolicy::Fixed) {
size.setWidth(m_widget->width());
}
// Move
if (m_vMove || m_hMove)
{