Menu

#143 TArrowBar.MouseLeft

open
nobody
None
5
2013-03-12
2013-03-12
Anonymous
No

Problem: If the component loses focus without a triggering of Mouse Up event (ex. Alt-tab in and out of application while mouse down) - the position is still updated until the user clicks the component again. Very annoying.

As a hot fix I did:

procedure TArrowBar.MouseLeft;
begin
inherited;
DragZone := zNone;
Invalidate;
StopDragTracking;
end;

Discussion

Monday.com Logo