summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2006-04-12 07:22:34 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2006-04-12 07:22:34 +0000
commit7fa096eab829056fa6fb7ccce0f57b389de51fa0 (patch)
tree5eb291ee6c506a51d721ea98423fc73b2b9c5ed3
parent72cf2178d72461baf59a54a42a45f88cbc4d3346 (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--ChangeLog6
-rw-r--r--src/vte.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f1071f8..6eaea6b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/src/vte.c b/src/vte.c
index 9ed4be6..e629e34 100644
--- a/src/vte.c
+++ b/src/vte.c
@@ -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;