Side navigation
#2406 closed feature (fixed)
Opened February 25, 2008 01:04PM UTC
Closed March 03, 2008 04:08AM UTC
Proportional resizing using the Resizable
Reported by: | Anotherhero | Owned by: | braeker |
---|---|---|---|
Priority: | minor | Milestone: | 1.2.4 |
Component: | ui | Version: | 1.2.3 |
Keywords: | Resizable proportional | Cc: | |
Blocked by: | Blocking: |
Description
On line 325 there is
if(e.shiftKey) nh = nw * (p[1]/p[0]);
Could this be replaced with
if(e.shiftKey || o.aspectResize) nh = nw * (p[1]/p[0]);
This allows you to force keeping proportions
Attachments (1)
Change History (3)
Changed February 26, 2008 01:01PM UTC by comment:1
owner: | paul → braeker |
---|
Changed February 29, 2008 12:52PM UTC by comment:2
if(e.shiftKey o.aspectResize) nh = nw * (p[1]/p[0]);
should be
if(e.shiftKey || o.aspectResize) nh = nw * (p[1]/p[0]);
Changed March 03, 2008 04:08AM UTC by comment:3
resolution: | → fixed |
---|---|
status: | new → closed |
This is already fixed, thanks anyway!