From 6f065b8bfeb4eb23213863db13da831c6bf03739 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Sat, 10 Aug 2013 21:33:04 +0200 Subject: [PATCH] HaikuDepot: Changed my mind, search full description, too. --- src/apps/haiku-depot/Model.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/haiku-depot/Model.cpp b/src/apps/haiku-depot/Model.cpp index ef2f2b9ec66..6557bd16b6a 100644 --- a/src/apps/haiku-depot/Model.cpp +++ b/src/apps/haiku-depot/Model.cpp @@ -154,7 +154,7 @@ class SearchTermsFilter : public PackageFilter { if (!_TextContains(package.Title(), term) && !_TextContains(package.Publisher().Name(), term) && !_TextContains(package.ShortDescription(), term) - /*&& !_TextContains(package.FullDescription(), term)*/) { + && !_TextContains(package.FullDescription(), term)) { return false; } }