cabana: fix crash when combining graphs on MacOS (#27128)

This commit is contained in:
Willem Melching
2023-01-28 21:06:04 +01:00
committed by GitHub
parent 68c0012bf6
commit ba5c6715a8
+2 -1
View File
@@ -578,8 +578,9 @@ void ChartView::mousePressEvent(QMouseEvent *event) {
if (dropAction == Qt::MoveAction) {
return;
}
} else {
QChartView::mousePressEvent(event);
}
QChartView::mousePressEvent(event);
}
void ChartView::mouseReleaseEvent(QMouseEvent *event) {