Re: [lazarus] Bug Report 1861: found cause

2006-04-05 Thread Daniel Dugan
Mattias Gaertner <[EMAIL PROTECTED]> wrote:On Wed, 22 Mar 2006 11:01:37 -0800 (PST)Daniel Dugan <[EMAIL PROTECTED]>wrote:> [...]> Can you create a diff, so we can see the differences?> > Mattias> > > Here you go!Thanks. Applied.Mattias

Re: [lazarus] Bug Report 1861: found cause

2006-04-04 Thread Mattias Gaertner
On Wed, 22 Mar 2006 11:01:37 -0800 (PST) Daniel Dugan <[EMAIL PROTECTED]> wrote: > [...] > Can you create a diff, so we can see the differences? > > Mattias > > > Here you go! Thanks. Applied. Mattias _ To unsubscribe:

Re: [lazarus] Bug Report 1861: found cause

2006-03-22 Thread Daniel Dugan
Mattias Gaertner <[EMAIL PROTECTED]> wrote: On Wed, 22 Mar 2006 09:13:53 -0800 (PST)Daniel Dugan <[EMAIL PROTECTED]>wrote:> OK. Also need to change TControl.MouseMove:> > {--> TControl MouseMove> --

Re: [lazarus] Bug Report 1861: found cause

2006-03-22 Thread Mattias Gaertner
On Wed, 22 Mar 2006 09:13:53 -0800 (PST) Daniel Dugan <[EMAIL PROTECTED]> wrote: > OK. Also need to change TControl.MouseMove: > > {-- > TControl MouseMove > -

Re: [lazarus] Bug Report 1861: found cause

2006-03-22 Thread Daniel Dugan
OK. Also need to change TControl.MouseMove:   {--  TControl MouseMove --}Procedure TControl.MouseMove(Shift: TShiftState; X, Y: Integer);var  P:

Re: [lazarus] Bug Report 1861: found cause

2006-03-22 Thread Daniel Dugan
Drat! This successfully ends a drag operation but hoses up Dragover event handling. Still trying.Daniel Dugan <[EMAIL PROTECTED]> wrote: Daniel Dugan <[EMAIL PROTECTED]> wrote: I think I've found a cause for an end drag not working as I reported in issue 1861.   TControl.MouseUp tests TContr

Re: [lazarus] Bug Report 1861: found cause

2006-03-21 Thread Daniel Dugan
Daniel Dugan <[EMAIL PROTECTED]> wrote:I think I've found a cause for an end drag not working as I reported in issue 1861.   TControl.MouseUp tests TControl.Dragging, and it is returning false because the control that generates the mouseup is the target and not the source. This prevents DragO

[lazarus] Bug Report 1861: found cause

2006-03-21 Thread Daniel Dugan
I think I've found a cause for an end drag not working as I reported in issue 1861.   TControl.MouseUp tests TControl.Dragging, and it is returning false because the control that generates the mouseup is the target and not the source. This prevents DragObject.MouseUp from firing when the mouse bu