Add setting 'disable_mouse_paste'
This commit is contained in:
parent
28a2b0328f
commit
fa09ba0cda
|
@ -110,6 +110,7 @@ DEFAULTS = {
|
|||
'always_split_with_profile': False,
|
||||
'putty_paste_style' : False,
|
||||
'putty_paste_style_source_clipboard': False,
|
||||
'disable_mouse_paste' : False,
|
||||
'smart_copy' : True,
|
||||
'clear_select_on_copy' : False,
|
||||
'line_height' : 1.0,
|
||||
|
|
|
@ -978,9 +978,9 @@ class Terminal(Gtk.VBox):
|
|||
|
||||
if self.config['putty_paste_style']:
|
||||
middle_click = [self.popup_menu, (widget, event)]
|
||||
right_click = [self.paste_clipboard, (not self.config['putty_paste_style_source_clipboard'], )]
|
||||
right_click = [self.paste_clipboard, (not self.config['putty_paste_style_source_clipboard'], True)]
|
||||
else:
|
||||
middle_click = [self.paste_clipboard, (True, )]
|
||||
middle_click = [self.paste_clipboard, (True, True)]
|
||||
right_click = [self.popup_menu, (widget, event)]
|
||||
|
||||
# Ctrl-click event here.
|
||||
|
@ -1621,8 +1621,9 @@ class Terminal(Gtk.VBox):
|
|||
webbrowser.open(url)
|
||||
|
||||
|
||||
def paste_clipboard(self, primary=False):
|
||||
def paste_clipboard(self, primary=False, mouse=False):
|
||||
"""Paste one of the two clipboards"""
|
||||
if not (mouse and self.config['disable_mouse_paste']):
|
||||
for term in self.terminator.get_target_terms(self):
|
||||
if primary:
|
||||
term.vte.paste_primary()
|
||||
|
|
Loading…
Reference in New Issue