diff options
Diffstat (limited to 'ui/ui.dialog.js')
-rw-r--r-- | ui/ui.dialog.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.dialog.js b/ui/ui.dialog.js index 52a9d21a6..fb3def446 100644 --- a/ui/ui.dialog.js +++ b/ui/ui.dialog.js @@ -469,7 +469,7 @@ $.widget("ui.dialog", { minHeight: Math.max(options.minHeight - nonContentHeight, 0), height: options.height == 'auto' ? 'auto' - : options.height - nonContentHeight + : Math.max(options.height - nonContentHeight, 0) }); } }); |