From 9c3c3cda2657cd35b5f8f642b9548c04dce344cc Mon Sep 17 00:00:00 2001 From: michel404 Date: Sat, 2 Sep 2017 12:09:11 +0200 Subject: [PATCH] Fixed #3395: allow for multiline titles (#3396) (#3395) --- lib/shared/Popup.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/shared/Popup.js b/lib/shared/Popup.js index 6992aa41..d0881011 100644 --- a/lib/shared/Popup.js +++ b/lib/shared/Popup.js @@ -118,6 +118,8 @@ class Popup { */ hide() { this.hidden = true; + this.frame.style.left = "0"; + this.frame.style.top = "0"; this.frame.style.visibility = "hidden"; }