зеркало из https://github.com/mozilla/gecko-dev.git
fix bug #9753 for constrain not working properly with pixels/percent
This commit is contained in:
Родитель
44d3c72ca2
Коммит
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;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче