From 3e4d79eaf535dd84fe4af9c0d1a84ac12fa5f408 Mon Sep 17 00:00:00 2001 From: Barry Wardell Date: Tue, 26 Feb 2008 19:25:07 +0000 Subject: [PATCH] Remove the annoying 'Searching...0 tracks found' splash on Sansa when using the database. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16429 a1c6a512-1295-4272-9138-f99709370657 --- apps/tagtree.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/tagtree.c b/apps/tagtree.c index 01d80077c2..abd3902a7d 100644 --- a/apps/tagtree.c +++ b/apps/tagtree.c @@ -1053,8 +1053,12 @@ static int retrieve_entries(struct tree_context *c, struct tagcache_search *tcs, ) { show_search_progress(true, 0); +#if !defined(HAVE_FLASH_STORAGE) + /* Non-flash devices might have a pause while the disk spins up so give + some feedback so the user knows that something is happening */ gui_syncsplash(0, str(LANG_PLAYLIST_SEARCH_MSG), 0, csi->name); +#endif } if (c->currtable == allsubentries)