diff options
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/js/app.js | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,7 @@ CHANGELOG Roundcube Webmail =========================== +- Fix unintentional compose window resize (#1489114) - Fix performance regression in text wrapping function (#1489133) - Fix connection to posgtres db using unix socket (#1489132) - Implemented shared cache (rcube_cache_shared) diff --git a/program/js/app.js b/program/js/app.js index 7c4fbc133..d5a66abf0 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -2974,7 +2974,8 @@ function rcube_webmail() } else { this.redirect(url); - window.resizeTo(Math.max(this.env.popup_width, $(window).width()), $(window).height() + 24); + if (this.env.extwin) + window.resizeTo(Math.max(this.env.popup_width, $(window).width()), $(window).height() + 24); } }; |