diff options
author | Havoc Pennington <hp@pobox.com> | 2002-01-02 03:49:09 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2002-01-02 03:49:09 +0000 |
commit | 290e4efdfeff91b7abad43bb9644e4c8e0ff9887 (patch) | |
tree | a8327917ea81dccf0ea7b563bc6f1839de66c1b9 /gtk/gtktextbtree.c | |
parent | e7153de001f47adcba65c007b202dc583e21e09a (diff) | |
download | gtk+-290e4efdfeff91b7abad43bb9644e4c8e0ff9887.tar.gz |
propagate exposes to no window children not in the buffer window.
2002-01-01 Havoc Pennington <hp@pobox.com>
* gtk/gtktextview.c (gtk_text_view_expose_event): propagate
exposes to no window children not in the buffer window.
(gtk_text_view_class_init): add move_focus bindings for Ctrl-Tab
- is this the right way to do it?
(gtk_text_view_focus): add focus method, just chains up for now,
I'm not sure why the GtkContainer implementation doesn't work
* gtk/gtktextbtree.c (_gtk_text_btree_insert_child_anchor): fill
in the text line for the child anchor segment
* tests/testtext.c (do_add_focus_children): add another test
example (to put focusable buttons into the widget)
Diffstat (limited to 'gtk/gtktextbtree.c')
-rw-r--r-- | gtk/gtktextbtree.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/gtktextbtree.c b/gtk/gtktextbtree.c index 3cabfc7272..155ed86921 100644 --- a/gtk/gtktextbtree.c +++ b/gtk/gtktextbtree.c @@ -1164,6 +1164,7 @@ _gtk_text_btree_insert_child_anchor (GtkTextIter *iter, seg = _gtk_widget_segment_new (anchor); tree = seg->body.child.tree = _gtk_text_iter_get_btree (iter); + seg->body.child.line = _gtk_text_iter_get_text_line (iter); insert_pixbuf_or_widget_segment (iter, seg); |