fix bug #9753 for constrain not working properly with pixels/percent

This commit is contained in:
brade%netscape.com 2000-04-03 14:33:17 +00:00
Родитель 44d3c72ca2
Коммит 35b5c18ff8
1 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -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;