mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-26 11:12:19 -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);
|
str = gtk_xtext_selection_get_text (GTK_XTEXT (xtext), &len);
|
||||||
if (str)
|
if (str)
|
||||||
{
|
{
|
||||||
gtk_clipboard_set_text (gtk_widget_get_clipboard (xtext, GDK_SELECTION_CLIPBOARD),
|
if (str[0])
|
||||||
str, len);
|
gtk_clipboard_set_text (gtk_widget_get_clipboard (xtext, GDK_SELECTION_CLIPBOARD),
|
||||||
|
str, len);
|
||||||
free (str);
|
free (str);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user