diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-06-24 13:49:34 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-06-24 13:49:34 +0000 |
commit | 47ab9b2dc975db8d8a1f841956e4576f9b651e4a (patch) | |
tree | 53b97d902a44191729456290794a25b8ea1cd2df /gtk | |
parent | ded7d9b234a01d66159003f8b27601845115da5b (diff) | |
download | gdk-pixbuf-47ab9b2dc975db8d8a1f841956e4576f9b651e4a.tar.gz |
Don't jump to the next line if we are at the end of the line.
2005-06-24 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktextview.c (gtk_text_view_scroll_hpages): Don't
jump to the next line if we are at the end of the line.
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtktextview.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gtk/gtktextview.c b/gtk/gtktextview.c index daa10ea49..e22913cf8 100644 --- a/gtk/gtktextview.c +++ b/gtk/gtktextview.c @@ -4752,6 +4752,8 @@ gtk_text_view_move_cursor_internal (GtkTextView *text_view, break; case GTK_MOVEMENT_PARAGRAPHS: + g_print ("move paragraphs: %d %d\n", + count, gtk_text_iter_get_line_offset (&newplace)); if (count > 0) { if (!gtk_text_iter_ends_line (&newplace)) @@ -5027,7 +5029,8 @@ gtk_text_view_scroll_hpages (GtkTextView *text_view, else if (count > 0 && adj->value >= (adj->upper - adj->page_size - 1e-12)) { /* already at far right, just be sure we are at the end */ - gtk_text_iter_forward_to_line_end (&new_insert); + if (!gtk_text_iter_ends_line (&new_insert)) + gtk_text_iter_forward_to_line_end (&new_insert); move_cursor (text_view, &new_insert, extend_selection); } else |