mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-03 06:58:42 +00:00
Fix opening links from Help menu and others
This commit is contained in:
parent
f16ff06083
commit
2acd470626
1 changed files with 9 additions and 11 deletions
|
@ -188,7 +188,6 @@ def open_url_in_browser(url):
|
||||||
|
|
||||||
:param url: the url to open
|
:param url: the url to open
|
||||||
"""
|
"""
|
||||||
def start_browser():
|
|
||||||
import threading
|
import threading
|
||||||
import webbrowser
|
import webbrowser
|
||||||
class BrowserThread(threading.Thread):
|
class BrowserThread(threading.Thread):
|
||||||
|
@ -198,7 +197,6 @@ def open_url_in_browser(url):
|
||||||
def run(self):
|
def run(self):
|
||||||
webbrowser.open(self.url)
|
webbrowser.open(self.url)
|
||||||
BrowserThread(url).start()
|
BrowserThread(url).start()
|
||||||
return False
|
|
||||||
|
|
||||||
## Formatting text functions
|
## Formatting text functions
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue