aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/text/e-text.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-08-03 06:49:04 +0800
committerChris Lahey <clahey@src.gnome.org>2000-08-03 06:49:04 +0800
commit4715c96fb61680a2fd424eae96053e2cc0bc3ada (patch)
treea046abc85b21a126ca80d3cf4c66d1dca34282fe /widgets/text/e-text.c
parentf29b73483cecc138b1cbee31bbd318973abd466e (diff)
downloadgsoc2013-evolution-4715c96fb61680a2fd424eae96053e2cc0bc3ada.tar
gsoc2013-evolution-4715c96fb61680a2fd424eae96053e2cc0bc3ada.tar.gz
gsoc2013-evolution-4715c96fb61680a2fd424eae96053e2cc0bc3ada.tar.bz2
gsoc2013-evolution-4715c96fb61680a2fd424eae96053e2cc0bc3ada.tar.lz
gsoc2013-evolution-4715c96fb61680a2fd424eae96053e2cc0bc3ada.tar.xz
gsoc2013-evolution-4715c96fb61680a2fd424eae96053e2cc0bc3ada.tar.zst
gsoc2013-evolution-4715c96fb61680a2fd424eae96053e2cc0bc3ada.zip
Made clicking choose the right character even if show_borders is on.
2000-08-02 Christopher James Lahey <clahey@helixcode.com> * widgets/e-text/e-text.c: Made clicking choose the right character even if show_borders is on. svn path=/trunk/; revision=4492
Diffstat (limited to 'widgets/text/e-text.c')
-rw-r--r--widgets/text/e-text.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/widgets/text/e-text.c b/widgets/text/e-text.c
index 591f6451cf..69c94f9432 100644
--- a/widgets/text/e-text.c
+++ b/widgets/text/e-text.c
@@ -1580,12 +1580,15 @@ get_line_xpos_item_relative (EText *text, struct line *line)
break;
default:
+ if (text->draw_borders)
+ x += BORDER_INDENT;
+
/* For GTK_JUSTIFY_LEFT, we don't have to do anything. We do not support
* GTK_JUSTIFY_FILL, yet.
*/
break;
}
-
+
return x;
}
@@ -2187,6 +2190,9 @@ _get_position_from_xy (EText *text, gint x, gint y)
y += text->yofs_edit;
+ if (text->draw_borders)
+ ypos += BORDER_INDENT;
+
j = 0;
while (y > ypos) {
ypos += text->font->ascent + text->font->descent;