diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-04-12 07:22:34 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-04-12 07:22:34 +0000 |
commit | 7fa096eab829056fa6fb7ccce0f57b389de51fa0 (patch) | |
tree | 5eb291ee6c506a51d721ea98423fc73b2b9c5ed3 | |
parent | 72cf2178d72461baf59a54a42a45f88cbc4d3346 (diff) |
Bug 144456 – UK pound currency symbol rendered incorrectly
2006-04-12 Behdad Esfahbod <behdad@gnome.org>
Bug 144456 – UK pound currency symbol rendered incorrectly
* src/vte.c: Offset characters drawn in draw_graphic for padding.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/vte.c | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,5 +1,11 @@ 2006-04-12 Behdad Esfahbod <behdad@gnome.org> + Bug 144456 – UK pound currency symbol rendered incorrectly + + * src/vte.c: Offset characters drawn in draw_graphic for padding. + +2006-04-12 Behdad Esfahbod <behdad@gnome.org> + Bug 307403 – xticker doublefree * src/xticker.c: Avoid double free. @@ -7723,8 +7723,8 @@ vte_terminal_draw_graphic(VteTerminal *terminal, gunichar c, GdkColor color; request.c = c; - request.x = x; - request.y = y; + request.x = x + VTE_PAD_WIDTH; + request.y = y + VTE_PAD_WIDTH; request.columns = columns; color.red = terminal->pvt->palette[fore].red; |