1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-05 15:34:57 -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
+1 -3
View File
@@ -36,8 +36,8 @@ FeatureGUI::FeatureGUI(QWidget *parent) :
QMdiSubWindow(parent),
m_featureIndex(0),
m_contextMenuType(ContextMenuNone),
m_drag(false),
m_resizer(this),
m_drag(false),
m_disableResize(false),
m_mdi(nullptr)
{
@@ -153,8 +153,6 @@ FeatureGUI::FeatureGUI(QWidget *parent) :
this,
&FeatureGUI::onWidgetRolled
);
m_resizer.enableChildMouseTracking();
}
FeatureGUI::~FeatureGUI()