1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 22:14:45 -04:00

Fix resize cursor not being cleared when mouse moves over child widgets

This commit is contained in:
Jon Beniston
2023-11-13 20:51:03 +00:00
parent 95da3936df
commit e799e5eb72
124 changed files with 145 additions and 15 deletions
+2 -4
View File
@@ -39,9 +39,9 @@ DeviceGUI::DeviceGUI(QWidget *parent) :
m_deviceType(DeviceRx),
m_deviceSetIndex(0),
m_contextMenuType(ContextMenuNone),
m_resizer(this),
m_drag(false),
m_currentDeviceIndex(-1),
m_resizer(this)
m_currentDeviceIndex(-1)
{
qDebug("DeviceGUI::DeviceGUI: %p", parent);
setWindowFlags(windowFlags() | Qt::FramelessWindowHint);
@@ -205,8 +205,6 @@ DeviceGUI::DeviceGUI(QWidget *parent) :
this,
&DeviceGUI::addChannelEmitted
);
m_resizer.enableChildMouseTracking();
}
DeviceGUI::~DeviceGUI()