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