[DIALOG] height is always auto

[DIALOG] height is always auto


I am having an issue (both with 1.6RC5, and 1.6RC6) where the heights
are ALWAYS auto on the dialogs. The width is set correctly in all
cases, but for the life of me, I cannot get the height to work.
I am setting height different ways on different dialogs, but they all
act the same:
        autoOpen: false,
        height: 118,
        width: 166,
        position: 'center',
        title: 'Loading, Please wait...',
        modal: true,
        closeOnEscape: false,
        overlay: {
            opacity: 0.5,
            background: 'white'
        },
        draggable: false,
        resizable: false
and
$('#messageDialog').dialog('option', 'height', 400);
Every other option set is working, it is just height. and Just to be
sure I'm not looking at the wrong dimensions... here is the actual
dialog HTML:
<div class="ui-widget-overlay" style="width: 1440px; height: 680px; z-
index: 1022;"/>
<div class="ui-dialog ui-widget ui-widget-content ui-corner-all
undefined" style="overflow: hidden; display: block; position:
absolute; z-index: 1024; outline-color: -moz-use-text-color; outline-
style: none; outline-width: 0px; height: auto; width: 166px; top:
265px; left: 637px;" tabindex="-1" role="dialog" aria-labelledby="ui-
dialog-title-loaderContainer">
<div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-
helper-clearfix" unselectable="on" style="-moz-user-select: none;">
<span id="ui-dialog-title-loaderContainer" class="ui-dialog-title"
unselectable="on" style="-moz-user-select: none;">Loading, Please
wait...</span>
</div>
<div id="loaderContainer" class="loader ui-dialog-content ui-widget-
content" style="display: block; height: 88px; min-height: 120px;
width: auto;">
<img id="loadImg" width="32" height="32" src="skins/winxp.new.compact/
images/loading.gif" alt="loading.gif"/>
</div>
</div>
<div class="ui-widget-shadow" style="position: absolute; left: 637px;
top: 265px; width: 166px; height: 150px; z-index: 1023;"/>
I am using jquery.ui.all.js if that makes a difference.