1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 18:45:10 +00:00

Bugfix: execgraph scale 0-0 instead of 0-100

git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@1149 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Nikolas Garofil 2008-06-08 20:39:07 +00:00
parent a4a04f0025
commit 83bf37fe85
2 changed files with 2 additions and 2 deletions

View File

@ -2,6 +2,7 @@
2008-06-08
* Bugfix, $memgraph wasn't working and needed docs
* Bugfix, $execgraph showed 0-0 instead of 0-100 values
2008-06-07
* Fix bug where DEV_NAME can read uninitialised memory

View File

@ -4865,8 +4865,7 @@ static void generate_text_internal(char *p, int p_max_size,
ERR("your execgraph value is not between 0 and 100, "
"therefore it will be ignored");
} else {
new_graph(p, 0, 25, obj->c, obj->d, (int) (barnum),
obj->e, 1);
new_graph(p, 0, 25, obj->c, obj->d, (int) (barnum), 100, 1);
}
}
OBJ(execibar) {