Fix for issue #289, autocopy though no text selected

This commit is contained in:
Richard Hitt 2012-11-25 21:26:15 -08:00
parent acc90d4e77
commit 1bb0f34084
1 changed files with 3 additions and 2 deletions

View File

@ -2165,8 +2165,9 @@ gtk_xtext_set_clip_owner (GtkWidget * xtext, GdkEventButton * event)
str = gtk_xtext_selection_get_text (GTK_XTEXT (xtext), &len);
if (str)
{
gtk_clipboard_set_text (gtk_widget_get_clipboard (xtext, GDK_SELECTION_CLIPBOARD),
str, len);
if (str[0])
gtk_clipboard_set_text (gtk_widget_get_clipboard (xtext, GDK_SELECTION_CLIPBOARD),
str, len);
free (str);
}