mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-28 00:07:28 +00:00
fix bug #9753 for constrain not working properly with pixels/percent
This commit is contained in:
parent
44d3c72ca2
commit
35b5c18ff8
@ -318,9 +318,11 @@ function doDimensionEnabling( doEnable )
|
||||
SetElementEnabledByID( "heightLabel", enable );
|
||||
SetElementEnabledByID( "heightUnitsSelect", enable );
|
||||
|
||||
|
||||
SetElementEnabledByID( "constrainCheckbox", enable );
|
||||
SetElementEnabledByID( "constrainLabel", enable );
|
||||
var constrainEnable = enable
|
||||
&& ( dialog.widthUnitsSelect.selectedIndex == 0 )
|
||||
&& ( dialog.heightUnitsSelect.selectedIndex == 0 );
|
||||
SetElementEnabledByID( "constrainCheckbox", constrainEnable );
|
||||
SetElementEnabledByID( "constrainLabel", constrainEnable );
|
||||
}
|
||||
|
||||
function doOverallEnabling()
|
||||
@ -380,6 +382,7 @@ function constrainProportions( srcID, destID )
|
||||
// now find out if we should be constraining or not
|
||||
|
||||
var constrainChecked = (dialog.constrainCheckbox.checked);
|
||||
constrainChecked = constrainChecked && !dialog.constrainCheckbox.disabled;
|
||||
if ( !constrainChecked )
|
||||
return;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user