diff --git a/FHEM/92_FileLog.pm b/FHEM/92_FileLog.pm
index 2294d7738..e4691e25f 100755
--- a/FHEM/92_FileLog.pm
+++ b/FHEM/92_FileLog.pm
@@ -444,10 +444,12 @@ FileLog_logWrapper($)
FileLog_loadSVG();
FW_pO "
";
FW_pO "
";
- FW_pO SVG_zoomLink("$cmd;zoom=-1", "Zoom-in", "zoom in");
- FW_pO SVG_zoomLink("$cmd;zoom=1", "Zoom-out","zoom out");
- FW_pO SVG_zoomLink("$cmd;off=-1", "Prev", "prev");
- FW_pO SVG_zoomLink("$cmd;off=1", "Next", "next");
+ if(AttrVal($d,"plotmode",$FW_plotmode) ne "gnuplot") {
+ FW_pO SVG_zoomLink("$cmd;zoom=-1", "Zoom-in", "zoom in");
+ FW_pO SVG_zoomLink("$cmd;zoom=1", "Zoom-out","zoom out");
+ FW_pO SVG_zoomLink("$cmd;off=-1", "Prev", "prev");
+ FW_pO SVG_zoomLink("$cmd;off=1", "Next", "next");
+ }
FW_pO "
";
FW_pO " | ";
my $logtype = $defs{$d}{TYPE};
|