From 0e9c8a35e6d2a4814236f2c8e9ab0ce4d2f06257 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Mon, 24 Aug 2020 09:32:49 -0400 Subject: [PATCH] fix thumbnail height style. Make thumbnail clickable. --- web/skins/classic/views/console.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/web/skins/classic/views/console.php b/web/skins/classic/views/console.php index 8d3b326ca..02626759b 100644 --- a/web/skins/classic/views/console.php +++ b/web/skins/classic/views/console.php @@ -294,10 +294,12 @@ for( $monitor_i = 0; $monitor_i < count($displayMonitors); $monitor_i += 1 ) { $streamSrc = $Monitor->getStreamSrc(array('scale'=>$scale)); $thmbWidth = ( $options['width'] ) ? 'width:'.$options['width'].'px;' : ''; - $thmbHeight = ( $options['height'] ) ? 'width:'.$options['height'].'px;' : ''; + $thmbHeight = ( $options['height'] ) ? 'height:'.$options['height'].'px;' : ''; - $imgHTML = '
'; + $imgHTML = '
' : '>'; + $imgHTML .= '
'; } ?>