mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-22 17:22:18 -05:00
Merge pull request #292 from RichardHitt/master
Fix for issue #289, autocopy though no text selected
This commit is contained in:
commit
7424c0c68b
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user