diff options
author | Thomas Meire <blackskad@gmail.com> | 2010-01-17 06:41:32 +0800 |
---|---|---|
committer | Thomas Meire <blackskad@gmail.com> | 2010-01-21 08:20:08 +0800 |
commit | d128e3a36e43a08a9dfe4a2c42b9485e146faeae (patch) | |
tree | ad57738003d41968d9f00a02740ff8321c462335 /libempathy-gtk/empathy-log-window.c | |
parent | 993766233887be988d3864c64be85c83989d42ad (diff) | |
download | gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar.gz gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar.bz2 gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar.lz gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar.xz gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar.zst gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.zip |
added case sensitive highlighting for adium themes
Diffstat (limited to 'libempathy-gtk/empathy-log-window.c')
-rw-r--r-- | libempathy-gtk/empathy-log-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c index 09b3abd34..c8785e2c0 100644 --- a/libempathy-gtk/empathy-log-window.c +++ b/libempathy-gtk/empathy-log-window.c @@ -407,7 +407,7 @@ log_window_find_changed_cb (GtkTreeSelection *selection, /* Highlight and find messages */ empathy_chat_view_highlight (window->chatview_find, - window->last_find); + window->last_find, FALSE); empathy_chat_view_find_next (window->chatview_find, window->last_find, TRUE); @@ -1108,7 +1108,7 @@ log_window_entry_chats_changed_cb (GtkWidget *entry, const gchar *str; str = gtk_entry_get_text (GTK_ENTRY (window->entry_chats)); - empathy_chat_view_highlight (window->chatview_chats, str); + empathy_chat_view_highlight (window->chatview_chats, str, FALSE); if (str) { empathy_chat_view_find_next (window->chatview_chats, |