From 27033967a723d7addedff98ca4c1254d17a9ce92 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Thu, 31 Jan 2013 03:55:30 +0100 Subject: [PATCH] Fixed rendering bug within dialogs after multiple calls --- wcfsetup/install/files/js/WCF.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index 8bc92d20c7..4f004cf6c8 100755 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -7873,6 +7873,7 @@ $.widget('ui.wcfDialog', { // remove static dimensions this._content.css({ height: 'auto', + overflow: 'auto', width: 'auto' }); @@ -7897,6 +7898,7 @@ $.widget('ui.wcfDialog', { // force dimensions this._content.css({ height: this._contentDimensions.height + 'px', + overflow: 'auto', width: this._contentDimensions.width + 'px' }); @@ -7923,6 +7925,7 @@ $.widget('ui.wcfDialog', { // remove static dimensions $content.css({ height: 'auto', + overflow: 'auto', width: 'auto' }); }); -- 2.20.1