aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/text/gal-a11y-e-text.c
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2012-06-14 12:48:16 +0800
committerCosimo Cecchi <cosimoc@gnome.org>2012-06-18 22:27:01 +0800
commit4a053b128659299147d1537baea3e865c989b3d6 (patch)
tree27d0c89bae18a1136cd7a25199527156a95ef197 /widgets/text/gal-a11y-e-text.c
parent86f388e13a518e6853df8e429f504fcd74853c29 (diff)
downloadgsoc2013-evolution-4a053b128659299147d1537baea3e865c989b3d6.tar
gsoc2013-evolution-4a053b128659299147d1537baea3e865c989b3d6.tar.gz
gsoc2013-evolution-4a053b128659299147d1537baea3e865c989b3d6.tar.bz2
gsoc2013-evolution-4a053b128659299147d1537baea3e865c989b3d6.tar.lz
gsoc2013-evolution-4a053b128659299147d1537baea3e865c989b3d6.tar.xz
gsoc2013-evolution-4a053b128659299147d1537baea3e865c989b3d6.tar.zst
gsoc2013-evolution-4a053b128659299147d1537baea3e865c989b3d6.zip
e-text: remove unused draw_borders property
Nobody ever sets it.
Diffstat (limited to 'widgets/text/gal-a11y-e-text.c')
-rw-r--r--widgets/text/gal-a11y-e-text.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/widgets/text/gal-a11y-e-text.c b/widgets/text/gal-a11y-e-text.c
index ba7e7dd35f..49274ae4b7 100644
--- a/widgets/text/gal-a11y-e-text.c
+++ b/widgets/text/gal-a11y-e-text.c
@@ -551,11 +551,6 @@ et_get_character_extents (AtkText *text,
*width = pango_pos.width;
*height = pango_pos.height;
- if (etext->draw_borders) {
- *x += 3; /*BORDER_INDENT;*/
- *y += 3; /*BORDER_INDENT;*/
- }
-
*x += etext->xofs;
*y += etext->yofs;
@@ -630,11 +625,6 @@ et_get_offset_at_point (AtkText *text,
else
return -1;
- if (etext->draw_borders) {
- x -= 3; /*BORDER_INDENT;*/
- y -= 3; /*BORDER_INDENT;*/
- }
-
x -= etext->xofs;
y -= etext->yofs;