From aa3dc436a0707ce3008e3f370f28b92b849f4bcd Mon Sep 17 00:00:00 2001 From: ruro Date: Wed, 12 Feb 2020 13:31:10 +0300 Subject: [PATCH] fix: double click in tmux/vim --- guake/notebook.py | 3 --- .../notes/fix_double_click_new_tab-5cafb9738e3a9218.yaml | 7 +++++++ 2 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 releasenotes/notes/fix_double_click_new_tab-5cafb9738e3a9218.yaml diff --git a/guake/notebook.py b/guake/notebook.py index eb1fd5ec3..23a1a6765 100644 --- a/guake/notebook.py +++ b/guake/notebook.py @@ -115,9 +115,6 @@ def on_button_press(self, target, event, user_data): # Gtk 3.18 fallback ("'Menu' object has no attribute 'popup_at_pointer'") menu.popup(None, None, None, None, event.button, event.time) - elif event.type == Gdk.EventType.DOUBLE_BUTTON_PRESS and event.button == 1: - self.new_page_with_focus() - return False @save_tabs_when_changed diff --git a/releasenotes/notes/fix_double_click_new_tab-5cafb9738e3a9218.yaml b/releasenotes/notes/fix_double_click_new_tab-5cafb9738e3a9218.yaml new file mode 100644 index 000000000..fc2045c9a --- /dev/null +++ b/releasenotes/notes/fix_double_click_new_tab-5cafb9738e3a9218.yaml @@ -0,0 +1,7 @@ +known_issues: + - | + - removes the broken feature, where double-clicking on the tab bar opened a new tab #1439 + +fixes: + - | + - fixes an issue, where double-clicking in certain CLI apps would instead open a new tab #1697