mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-04-01 02:42:39 +08:00
Fixed nullptr access in DockWidgetTab
This commit is contained in:
parent
b7602cf52e
commit
cbd16b3cee
@ -417,7 +417,10 @@ void CDockWidgetTab::mouseReleaseEvent(QMouseEvent* ev)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
d->focusController()->setDockWidgetTabPressed(false);
|
if (CDockManager::testConfigFlag(CDockManager::FocusHighlighting))
|
||||||
|
{
|
||||||
|
d->focusController()->setDockWidgetTabPressed(false);
|
||||||
|
}
|
||||||
break; // do nothing
|
break; // do nothing
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user