1.6rc6 overlay bug yet?

1.6rc6 overlay bug yet?


Hi
i am working with 1.6rc6 and i am still stuck with the overlay bug. I
saw the bugtracker report on that error and i edited the ui.dialog.js
file to add the new line 'dialogClass: '', ' but it isn't still
working.
My snippet is as simple as:
$(function() {
            $("#formDlg").dialog({
                autoOpen: true,
                buttons: {
                    "Send": function () {
//                        $("#frmGrpChooser").ajaxSubmit();
                        $(this).bind ('click', function () {
                            $('#formDlg').ajaxSubmit();
                        });
                        return false;
                    },
                    "Cancel": function () {
                        $(this).dialog("close");
                    }
                },
                draggable: false,
                modal: true,
                overlay: {
                    opacity: 0.5,
                    background: "black",
                },
                resizable: false,
                title: "Group chooser...",
                autoResize : true,
            }); // dialog "constructor" function
        }); // function
i wouldn't mind using 1.5 version, but this one doesn't autoResize the
dialogs...
is anyone experimenting such this error?
any info will be welcome
thank you
regards
w i l l y