[Xfce4-commits] [apps/xfce4-terminal] 01/01: Add a space character after a dragged filename or URL
    noreply at xfce.org 
    noreply at xfce.org
       
    Tue Nov  6 17:28:19 CET 2018
    
    
  
This is an automated email from the git hooks/post-receive script.
f   2   4   0   4       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       m   a   s   t   e   r   
   in repository apps/xfce4-terminal.
commit ce8193242e73650856243c5714f8a827dc85eb63
Author: Igor <f2404 at yandex.ru>
Date:   Tue Nov 6 11:26:56 2018 -0500
    Add a space character after a dragged filename or URL
    
    Fixes bug #14849
---
 terminal/terminal-widget.c | 2 ++
 1 file changed, 2 insertions(+)
diff --git a/terminal/terminal-widget.c b/terminal/terminal-widget.c
index d99b344..acf8cb9 100644
--- a/terminal/terminal-widget.c
+++ b/terminal/terminal-widget.c
@@ -516,6 +516,7 @@ terminal_widget_drag_data_received (GtkWidget        *widget,
             {
               vte_terminal_feed_child (VTE_TERMINAL (widget), str->str, str->len);
             }
+          vte_terminal_feed_child (VTE_TERMINAL (widget), " ", 1);
           g_string_free (str, TRUE);
         }
       break;
@@ -551,6 +552,7 @@ terminal_widget_drag_data_received (GtkWidget        *widget,
 
           text = g_strjoinv (" ", uris);
           vte_terminal_feed_child (VTE_TERMINAL (widget), text, strlen (text));
+          vte_terminal_feed_child (VTE_TERMINAL (widget), " ", 1);
           g_strfreev (uris);
           g_free (text);
         }
-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
    
    
More information about the Xfce4-commits
mailing list