fixed to force a rigid scale in the memory graph

This commit is contained in:
Jordi Sanfeliu 2015-10-13 10:43:32 +02:00
parent cc103d7f4d
commit 6656de112c
2 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,8 @@ N.N.N - DD-MMM-2015
- Fixed a message of 'use of uninitialized value' in 'port.pm'. [#110]
- Fixed the Y-axis title in 'fail2ban.pm'. [#111]
- Fixed to avoid negative values in the network graph of 'process.pm'. [#117]
- Fixed to force a rigid scale in the memory graph.
(thanks to Lane Russell, lanerussell028 AT gmail.com for pointing this out)
- Small cosmetic changes.

View File

@ -703,6 +703,7 @@ sub system_cgi {
"--height=$height",
"--upper-limit=$total_mem",
"--lower-limit=0",
"--rigid",
"--base=1024",
$zoom,
@{$cgi->{version12}},
@ -737,6 +738,7 @@ sub system_cgi {
"--height=$height",
"--upper-limit=$total_mem",
"--lower-limit=0",
"--rigid",
"--base=1024",
$zoom,
@{$cgi->{version12}},