parent
6158f6e3b5
commit
ec89870a32
|
@ -129,7 +129,9 @@ on_selection_received (G_GNUC_UNUSED GtkClipboard *clipboard, const gchar *text,
|
|||
if (!text)
|
||||
return;
|
||||
|
||||
gtk_entry_set_text (GTK_ENTRY (g.entry), text);
|
||||
gchar *trimmed = g_strstrip (g_strdup (text));
|
||||
gtk_entry_set_text (GTK_ENTRY (g.entry), trimmed);
|
||||
g_free (trimmed);
|
||||
g_signal_emit_by_name (g.entry,
|
||||
"move-cursor", GTK_MOVEMENT_BUFFER_ENDS, 1, FALSE);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue