1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-02-03 20:48:31 +00:00
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@115 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Brenden Matthews 2005-08-16 06:39:23 +00:00
parent a847c7034e
commit f3feb17718

14
conky.c
View File

@ -3175,15 +3175,11 @@ static void draw_line(char *s)
case ALIGNR:
{
int pos_x =
text_start_x + text_width -
cur_x - 1 -
get_string_width(p);
if (pos_x >
specials[special_index].arg)
w = pos_x -
specials
[special_index].arg;
int pos_x = text_width - gap_x - get_string_width(p) - border_margin*2 - 1;
/*printf("pos_x %i text_start_x %i text_width %i cur_x %i get_string_width(p) %i gap_x %i specials[special_index].arg %i border_margin %i border_width %i\n", pos_x, text_start_x, text_width, cur_x, get_string_width(p), gap_x, specials[special_index].arg, border_margin, border_width);*/
if (pos_x > specials[special_index].arg) {
w = pos_x - specials[special_index].arg;
}
}
break;