aboutsummaryrefslogtreecommitdiffstats
path: root/community/xchat/midori.patch
blob: a9b4a08a44981d2f83013cba9c7dcda9c49fecf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/src/fe-gtk/fe-gtk.c b/src/fe-gtk/fe-gtk.c
index 251a7d7..f427ad4 100644
--- a/src/fe-gtk/fe-gtk.c
+++ b/src/fe-gtk/fe-gtk.c
@@ -958,6 +958,10 @@ fe_open_url_inner (const char *url)
 	/* everything failed, what now? just try firefox */
 	if (try_browser ("firefox", NULL, url))
 		return;
+	
+	/* try midori before giving up */
+	if (try_browser ("midori", NULL, url))
+		return;
 
 	/* fresh out of ideas... */
 	try_browser ("mozilla", NULL, url);