diff gtk/gtknotify.c @ 14647:18b74ed00850

[gaim-migrate @ 17393] Hide the Browsers preference tab when running in OS X, as is done with gnome, and use its open command which functions as gnome-open does for handling clicked links. committer: Tailor Script <tailor@pidgin.im>
author Evan Schoenberg <evan.s@dreskin.net>
date Fri, 29 Sep 2006 00:17:58 +0000
parents 45cdf2cf456c
children 4138063d89c9
line wrap: on
line diff
--- a/gtk/gtknotify.c	Fri Sep 29 00:17:18 2006 +0000
+++ b/gtk/gtknotify.c	Fri Sep 29 00:17:58 2006 +0000
@@ -942,6 +942,10 @@
 	{
 		command = g_strdup_printf("gnome-open %s", escaped);
 	}
+	else if (gaim_running_osx() == TRUE)
+	{
+		command = g_strdup_printf("open %s", escaped);
+	}
 	else if (!strcmp(web_browser, "epiphany") ||
 		!strcmp(web_browser, "galeon"))
 	{