Skip to content

Commit

Permalink
ensure we reset the search timer before firing the search update
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Marshall committed Mar 20, 2012
1 parent 8b19ec1 commit 34a6ecb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/music/windows/GUIWindowMusicNav.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -780,8 +780,8 @@ void CGUIWindowMusicNav::FrameMove()
// update our searching
if (m_searchTimer.IsRunning() && m_searchTimer.GetElapsedMilliseconds() > search_timeout)
{
OnSearchUpdate();
m_searchTimer.Stop();
OnSearchUpdate();
}
if (m_bDisplayEmptyDatabaseMessage)
SET_CONTROL_LABEL(CONTROL_LABELEMPTY,g_localizeStrings.Get(745)+'\n'+g_localizeStrings.Get(746));
Expand Down

0 comments on commit 34a6ecb

Please sign in to comment.