summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2003-01-16 00:25:56 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2003-01-16 00:25:56 +0000
commitba647198d010b84427dc642945f6a6f3bdd35b84 (patch)
treedd1576581e823708a8d86e154f6d43bb1f2a0869 /gtk
parentc737ddc98c02ac307a1dbbacc5e426d459ed3270 (diff)
downloadgdk-pixbuf-ba647198d010b84427dc642945f6a6f3bdd35b84.tar.gz
More fixes for invisible text.
Diffstat (limited to 'gtk')
-rw-r--r--gtk/gtktextlayout.c29
1 files changed, 10 insertions, 19 deletions
diff --git a/gtk/gtktextlayout.c b/gtk/gtktextlayout.c
index 9f31aee78..ddfcc7fad 100644
--- a/gtk/gtktextlayout.c
+++ b/gtk/gtktextlayout.c
@@ -1035,25 +1035,16 @@ totally_invisible_line (GtkTextLayout *layout,
GtkTextLineSegment *seg;
int bytes = 0;
- /* If we have a cached style, then we know it does actually apply
- * and we can just see if it is invisible.
+ /* Check if the first char is visible, if so we are partially visible.
+ * Note that we have to check this since we don't know the current
+ * invisible/noninvisible toggle state; this function can use the whole btree
+ * to get it right.
*/
- if (layout->one_style_cache &&
- !layout->one_style_cache->invisible)
+ _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
+ iter, line, 0);
+
+ if (!_gtk_text_btree_char_is_invisible (iter))
return FALSE;
- /* Without the cache, we check if the first char is visible, if so
- * we are partially visible. Note that we have to check this since
- * we don't know the current invisible/noninvisible toggle state; this
- * function can use the whole btree to get it right.
- */
- else
- {
- _gtk_text_btree_get_iter_at_line (_gtk_text_buffer_get_btree (layout->buffer),
- iter, line, 0);
-
- if (!_gtk_text_btree_char_is_invisible (iter))
- return FALSE;
- }
bytes = 0;
seg = line->segments;
@@ -2138,13 +2129,13 @@ gtk_text_layout_get_iter_at_pixel (GtkTextLayout *layout,
}
/**
- * gtk_text_layout_get_cursor_locations
+ * gtk_text_layout_get_cursor_locations:
* @layout: a #GtkTextLayout
* @iter: a #GtkTextIter
* @strong_pos: location to store the strong cursor position (may be %NULL)
* @weak_pos: location to store the weak cursor position (may be %NULL)
*
- * Given an iterator within a text laout, determine the positions that of the
+ * Given an iterator within a text layout, determine the positions of the
* strong and weak cursors if the insertion point is at that
* iterator. The position of each cursor is stored as a zero-width
* rectangle. The strong cursor location is the location where