summaryrefslogtreecommitdiffstats
path: root/share/extensions/webbrowser_reportabug.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/extensions/webbrowser_reportabug.py')
-rwxr-xr-xshare/extensions/webbrowser_reportabug.py16
1 files changed, 14 insertions, 2 deletions
diff --git a/share/extensions/webbrowser_reportabug.py b/share/extensions/webbrowser_reportabug.py
index cec55a435..3fb01a753 100755
--- a/share/extensions/webbrowser_reportabug.py
+++ b/share/extensions/webbrowser_reportabug.py
@@ -1,3 +1,15 @@
#!/usr/bin/env python
-import webbrowser
-webbrowser.open("http://inkscape.org/report_bugs.php")
+import webbrowser, threading
+url = "http://inkscape.org/report_bugs.php"
+
+class VisitWebSiteWithoutLockingInkscape(threading.Thread):
+ def __init__(self, url):
+ self.url = url
+ threading.Thread.__init__ (self)
+
+ def run(self):
+ webbrowser.open(self.url)
+
+vwswli = VisitWebSiteWithoutLockingInkscape(url)
+vwswli.start()
+