Просмотр исходного кода

changing the computation of the text y position

master
phillbush 4 лет назад
Родитель
Сommit
64240f40ee
1 измененных файлов: 1 добавлений и 1 удалений
  1. +1
    -1
      xmenu.c

+ 1
- 1
xmenu.c Просмотреть файл

@@ -671,7 +671,7 @@ drawtext(XftDraw *draw, XftColor *color, int x, int y, unsigned h, const char *t
if (draw) {
int texty;

texty = y + (h + currfont->ascent) / 2;
texty = y + (h - (currfont->ascent + currfont->descent))/2 + currfont->ascent;
XftDrawStringUtf8(draw, color, currfont, x, texty,
(XftChar8 *)s, len);
x += ext.xOff;


Загрузка…
Отмена
Сохранить