From 4a7fffcd370518f3c80abe85d208b2c3ed1744ce Mon Sep 17 00:00:00 2001 From: Jason Lobo Date: Thu, 22 Oct 2020 21:19:41 +0100 Subject: [PATCH] Make search results open in new tab, not window --- display.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/display.py b/display.py index 513dd0a..897b4a9 100644 --- a/display.py +++ b/display.py @@ -339,7 +339,7 @@ class Ui_MainWindow(object): def open_button(self, id): - webbrowser.open(results_sorted[id][3], new=1) + webbrowser.open(results_sorted[id][3]) def retranslateUi(self, MainWindow):