kopia lustrzana https://github.com/f4exb/sdrangel
Massive UI revamping (v7): FramelessWindowResizer: prevent horizontal expansion of horizontally fixed widgets. Part of #1209
rodzic
c803788dbb
commit
ee6de48402
|
@ -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)
|
||||
{
|
||||
|
|
Ładowanie…
Reference in New Issue