breaks off browser calls so the client doesnt hang
This commit is contained in:
parent
27d5db228a
commit
ad8e685743
@ -31,6 +31,7 @@
|
|||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
import os.path
|
import os.path
|
||||||
|
import threading
|
||||||
import webbrowser
|
import webbrowser
|
||||||
import xdg
|
import xdg
|
||||||
import xdg.BaseDirectory
|
import xdg.BaseDirectory
|
||||||
@ -118,10 +119,13 @@ def get_pixmap(fname):
|
|||||||
return os.path.join(PIXMAP_DIR, fname)
|
return os.path.join(PIXMAP_DIR, fname)
|
||||||
|
|
||||||
def open_url_in_browser(dialog, link):
|
def open_url_in_browser(dialog, link):
|
||||||
|
class LaunchBrowser(threading.Thread):
|
||||||
|
def run(self):
|
||||||
try:
|
try:
|
||||||
webbrowser.open(link)
|
webbrowser.open(link)
|
||||||
except webbrowser.Error:
|
except webbrowser.Error:
|
||||||
print _("Error: no webbrowser found")
|
print _("Error: no webbrowser found")
|
||||||
|
LaunchBrowser().start()
|
||||||
|
|
||||||
# Encryption States
|
# Encryption States
|
||||||
class EncState:
|
class EncState:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user