From a554ee5cd3f34f39bd202f6a40a79256b537c40d Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sun, 8 Aug 2010 17:46:02 +0200 Subject: [PATCH] Allow undo/redo of pasted text as a single item --- src/ui/gui/helper.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/ui/gui/helper.c b/src/ui/gui/helper.c index 492797dbba..0dfae65964 100644 --- a/src/ui/gui/helper.c +++ b/src/ui/gui/helper.c @@ -290,6 +290,8 @@ paste_syntax_to_window (const gchar *syntax) { static GtkWidget *the_syntax_pasteboard = NULL; + GtkTextBuffer *buffer = NULL; + if ( NULL == the_syntax_pasteboard) { the_syntax_pasteboard = psppire_syntax_window_new (); @@ -297,11 +299,12 @@ paste_syntax_to_window (const gchar *syntax) &the_syntax_pasteboard); } - gtk_text_buffer_insert_at_cursor (PSPPIRE_SYNTAX_WINDOW (the_syntax_pasteboard)->buffer, - syntax, -1); + buffer = GTK_TEXT_BUFFER (PSPPIRE_SYNTAX_WINDOW (the_syntax_pasteboard)->buffer); - gtk_text_buffer_insert_at_cursor (PSPPIRE_SYNTAX_WINDOW (the_syntax_pasteboard)->buffer, - "\n", 1); + gtk_text_buffer_begin_user_action (buffer); + gtk_text_buffer_insert_at_cursor (buffer, syntax, -1); + gtk_text_buffer_insert_at_cursor (buffer, "\n", 1); + gtk_text_buffer_end_user_action (buffer); gtk_widget_show (the_syntax_pasteboard); } -- 2.30.2