Ticket #6130 (closed defect: fixed)

Opened 2 years ago

Last modified 2 years ago

Button must be clicked once before it can be dragged in IE8

Reported by: John Ahlroos Owned by: John Ahlroos
Priority: minor Milestone: Plug-in for Eclipse 2.0
Component: Visual Designer Version:
Keywords: Cc:
Hours estimate: Hours done:
Depends on:
Workaround:

Description

To drag a button you must first click once on it and then you can drag it.

Change History

comment:1 Changed 2 years ago by John Ahlroos

Looks like the issue is on lines 254-260 in VButton:

     case Event.ONMOUSEMOVE:
            clickPending = false;
            if (isCapturing) {
                // Prevent dragging (on other browsers);
                DOM.eventPreventDefault(event);
            }
            break;

Since no move event is propagated down to the layout, the drag operation never starts. Curiously this has no effect when the button has keyboard focus and it only affects IE.

comment:2 Changed 2 years ago by Artur Signell

  • Milestone changed from Visual Editor 0.8 to Visual Editor 1.0

comment:3 Changed 2 years ago by John Ahlroos

  • Owner changed from ticketmaster to John Ahlroos
  • Status changed from new to accepted

comment:4 Changed 2 years ago by John Ahlroos

  • Status changed from accepted to closed
  • Resolution set to fixed
Note: See TracTickets for help on using tickets.