Registriert seit: 9. Okt 2003
Ort: München
251 Beiträge
Delphi 10.4 Sydney
|
AW: Seltsames Drag&Drop Problem in Firemonkey seit Delphi 10.42
1. Mai 2021, 15:39
In dem DragOver handler brauchst Du diesen code:
Scale := WindowHandleToPlatform(FForm.Handle).Scale; // JZ
P.X := Round( P.X / Scale );
P.Y := Round( P.Y / Scale );
Siehe auch: https://quality.embarcadero.com/browse/RSP-33045
und meinen fix hier https://quality.embarcadero.com/browse/RSP-33733
|