Closed
Bug 4630
Opened 26 years ago
Closed 26 years ago
[PP]Frames dont resize properly
Categories
(Core :: Layout: Form Controls, defect, P3)
Tracking
()
People
(Reporter: ramiro, Assigned: ramiro)
References
()
Details
The motion threshold for resizing a frame seems to be very small.
Resizing frames doesnt seem to be working too well.
This only happens on linux.
Comment 1•26 years ago
|
||
Some comments on the observed behavior:
The frame seems to drag correctly if the mouse is over the splitter at during
the end of when the splitter is redrawn.
if the mouse moves outside the splitter area during the redraw, then the
splitter thinks that dragging is over.
However, it also seems to remember that the mouse is down, so the next time you
enter the splitter's drawing area, it thinks the mouse is down and will allow
you to drag (again, assuming the mouse stays inside the splitter's drawing area)
basically I think it's saying something like:
while (mouseIsDown && mouseisoversplitter) redraw();
when it should have captured the mouse until the mouseUp, and then said:
while (mouseIsDown) redraw();
...I think somehow by not capturing the mouse, it's also not receiving the
mouseUp event...
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → DUPLICATE
marking dup of 4647
*** This bug has been marked as a duplicate of 4647 ***
Moving all Widget Set bugs, past and present, to new HTML Form Controls
component per request from karnaze. Widget Set component will be retired
shortly.
You need to log in
before you can comment on or make changes to this bug.
Description
•