Closed GoogleCodeExporter closed 8 years ago
Problem has been fixed. Fix will be included in next release.
Scan HorizontalSlider & VerticalSlider where XXX is "X" (HorizontalSlider) or
"Y"(VerticalSlider).
The mistake was due to forgetting to add the scroll offset to the mouse
coordinate.
/// BEGIN ///
final int mouseXXX = DOM.eventGetClientXXX( event );
/// END ///
replace with
/// BEGIN ///
final int mouseXXX = DOM.eventGetClientY( event ) +
BrowserHelper.getScrollXXX();
/// END
Original comment by miroslav...@gmail.com
on 3 Oct 2006 at 11:21
Original issue reported on code.google.com by
miroslav...@gmail.com
on 3 Oct 2006 at 10:37