[Xfce4-commits] <postler:master> Inline search should look at the sender as well

Christian Dywan noreply at xfce.org
Sun Jul 10 06:42:01 CEST 2011


Updating branch refs/heads/master
         to 2e8d58c3be671d79e3fb5d82ff8da1574422b12f (commit)
       from 2bf1a702f979993d56aa223273ea24ff8f7082a2 (commit)

commit 2e8d58c3be671d79e3fb5d82ff8da1574422b12f
Author: Christian Dywan <christian at twotoasts.de>
Date:   Sun Jul 10 03:51:57 2011 +0200

    Inline search should look at the sender as well

 postler/postler-messages.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/postler/postler-messages.vala b/postler/postler-messages.vala
index 1d6ee4a..061d424 100644
--- a/postler/postler-messages.vala
+++ b/postler/postler-messages.vala
@@ -29,7 +29,7 @@ public class Postler.Messages : Gtk.TreeView {
         Gtk.TreeIter iter) {
         Message message;
         model.get (iter, Columns.MESSAGE, out message);
-        return !(key in message.subject.down ());
+        return !(key in message.subject.down () || key in message.sender.down ());
     }
 
     void selection_changed () {



More information about the Xfce4-commits mailing list