From 56605ac64014a275d6ea44eddb09e050252259d7 Mon Sep 17 00:00:00 2001 From: "vincent@cubedesigners.com" Date: Tue, 18 Aug 2015 19:02:20 +0000 Subject: [PATCH] Fix size of multimedia content in popup --- inc/ws/Util/html5/class.ws.html5.links.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/ws/Util/html5/class.ws.html5.links.php b/inc/ws/Util/html5/class.ws.html5.links.php index e959863a4..b7e736992 100644 --- a/inc/ws/Util/html5/class.ws.html5.links.php +++ b/inc/ws/Util/html5/class.ws.html5.links.php @@ -682,8 +682,8 @@ class htmlMultimediaLink extends wsHTML5Link { $this->_url .= '?' . $this->extra; } - $iw = $this->_config['width'] * 3; - $ih = $this->_config['height'] * 3; + $iw = $this->_config['width']; + $ih = $this->_config['height']; $res = ''; } -- 2.39.5