We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0667bd commit 8cb8844Copy full SHA for 8cb8844
src/FloatingDockContainer.cpp
@@ -1272,6 +1272,16 @@ bool CFloatingDockContainer::event(QEvent *e)
1272
ADS_PRINT("FloatingWidget::event QEvent::NonClientAreaMouseButtonRelease");
1273
d->titleMouseReleaseEvent();
1274
}
1275
+ else if( QGuiApplication::mouseButtons().testFlag(Qt::NoButton) )
1276
+ {
1277
+ qDebug() << "DraggingFloatingWidget NoButton";
1278
+ d->titleMouseReleaseEvent();
1279
+ }
1280
+ else if( e->type() == QEvent::Leave )
1281
1282
+ qDebug() << "DraggingFloatingWidget Leave";
1283
1284
1285
break;
1286
1287
default:
0 commit comments