diff src/gtknotify.c @ 8882:25344c2d74c4

[gaim-migrate @ 9651] Eradicate "Show URLs as links" committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 06 May 2004 04:58:49 +0000
parents 013d256e8ded
children 87fcb56feeca
line wrap: on
line diff
--- a/src/gtknotify.c	Thu May 06 04:44:33 2004 +0000
+++ b/src/gtknotify.c	Thu May 06 04:58:49 2004 +0000
@@ -375,18 +375,11 @@
 
 	gaim_gtk_find_images(text, &images);
 
-	if (gaim_prefs_get_bool("/gaim/gtk/conversations/show_urls_as_links"))
-	{
-		linked_text = gaim_markup_linkify(text);
-		gtk_imhtml_append_text_with_images(GTK_IMHTML(imhtml), linked_text,
-										   options, images);
-		g_free(linked_text);
-	}
-	else
-	{
-		gtk_imhtml_append_text_with_images(GTK_IMHTML(imhtml), text,
-										   options, images);
-	}
+	/* Make sure URLs are clickable */
+	linked_text = gaim_markup_linkify(text);
+	gtk_imhtml_append_text_with_images(GTK_IMHTML(imhtml), linked_text,
+									   options, images);
+	g_free(linked_text);
 
 	if (images)
 	{