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:
parent
a4a04f0025
commit
83bf37fe85
@ -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
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user