Fix URL opening. Little too much removed in original port, meaning one click = two copies of page opened.

This commit is contained in:
Stephen Boddy 2015-07-02 21:42:40 +02:00
parent 912545e5da
commit 1a435127f2
1 changed files with 5 additions and 1 deletions

View File

@ -1376,7 +1376,11 @@ class Terminal(Gtk.VBox):
except:
dbg('custom url handler did not work, falling back to defaults')
Gtk.show_uri(None, url, Gdk.CURRENT_TIME)
try:
Gtk.show_uri(None, url, Gdk.CURRENT_TIME)
return
except:
dbg('Gtk.show_uri did not work, falling through to xdg-open')
try:
subprocess.Popen(["xdg-open", url])