mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-05 21:07:52 +00:00
1.2
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@72 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
parent
2abb4eb366
commit
634b3e9c97
2
TODO
2
TODO
@ -3,5 +3,5 @@
|
||||
* simple buttons?
|
||||
* icecast status
|
||||
* rewrite parts of code, making them more effecient and modular (in particular, the way objects are handled is a complete mess)
|
||||
* network transparency
|
||||
* network transparency (aim for 1.5)
|
||||
* think of new features to add
|
||||
|
7
conky.c
7
conky.c
@ -3111,11 +3111,8 @@ static void draw_line(char *s)
|
||||
|
||||
case ALIGNC:
|
||||
{
|
||||
int pos_x =
|
||||
text_start_x + text_width -
|
||||
cur_x - 1 -
|
||||
get_string_width(p) / 2 -
|
||||
(text_width / 2);
|
||||
printf("text_start_x %i text_width %i cur_x %i get_string_width(p) %i text_width %i\n", text_start_x, text_width, cur_x, get_string_width(p), text_width);
|
||||
int pos_x = (text_start_x*2) + text_width - cur_x - ((float)get_string_width(p) / 2) - ((float)text_width / 2);
|
||||
if (pos_x >
|
||||
specials[special_index].arg)
|
||||
w = pos_x -
|
||||
|
Loading…
Reference in New Issue
Block a user