forked from AuroraMiddleware/gtk
keep the cursor visible when the size changes. Fixes bug #344874.
2006-06-22 Michael Natterer <mitch@imendio.com> * gtk/gtktextview.c (gtk_text_view_size_allocate): keep the cursor visible when the size changes. Fixes bug #344874.
This commit is contained in:
parent
63ba491f40
commit
9365af4cd3
@ -1,3 +1,8 @@
|
||||
2006-06-22 Michael Natterer <mitch@imendio.com>
|
||||
|
||||
* gtk/gtktextview.c (gtk_text_view_size_allocate): keep the cursor
|
||||
visible when the size changes. Fixes bug #344874.
|
||||
|
||||
2006-06-22 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkpintjob.h: Add a note about updating the registration.
|
||||
|
@ -1,3 +1,8 @@
|
||||
2006-06-22 Michael Natterer <mitch@imendio.com>
|
||||
|
||||
* gtk/gtktextview.c (gtk_text_view_size_allocate): keep the cursor
|
||||
visible when the size changes. Fixes bug #344874.
|
||||
|
||||
2006-06-22 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkpintjob.h: Add a note about updating the registration.
|
||||
|
@ -3127,11 +3127,21 @@ gtk_text_view_size_allocate (GtkWidget *widget,
|
||||
*/
|
||||
gtk_text_view_flush_first_validate (text_view);
|
||||
|
||||
/* widget->window doesn't get auto-redrawn as the layout is computed, so has to
|
||||
* be invalidated
|
||||
*/
|
||||
if (size_changed && GTK_WIDGET_REALIZED (widget))
|
||||
{
|
||||
GtkTextBuffer *buffer;
|
||||
|
||||
/* widget->window doesn't get auto-redrawn as the layout is
|
||||
* computed, so has to be invalidated
|
||||
*/
|
||||
gdk_window_invalidate_rect (widget->window, NULL, FALSE);
|
||||
|
||||
/* keep cursor visible */
|
||||
buffer = get_buffer (text_view);
|
||||
gtk_text_view_scroll_to_mark (text_view,
|
||||
gtk_text_buffer_get_mark (buffer, "insert"),
|
||||
0.0, FALSE, 0.0, 0.0);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user