diff --git a/terminatorlib/terminatorterm.py b/terminatorlib/terminatorterm.py index 553b2741..08be0b75 100755 --- a/terminatorlib/terminatorterm.py +++ b/terminatorlib/terminatorterm.py @@ -319,7 +319,9 @@ text/plain txt = selection_data.data.strip() if txt[0:7] == "file://": txt = "'%s'" % txt[7:] - self._vte.feed_child(txt) + for term in self.terminator.term_list: + if term == self or term._group == self._group: + term._vte.feed_child(txt) return widgetsrc = data.terminator.term_list[int(selection_data.data)]