~x3lectric/xbmc/svn-trunk

« back to all changes in this revision

Viewing changes to xbmc/GUIWindowSlideShow.cpp

  • Committer: elupus
  • Date: 2010-03-30 20:08:12 UTC
  • Revision ID: svn-v4:568bbfeb-2a22-0410-94d2-cc84cf5bfa90:trunk:28930
changed: default to disable threaded guithread directory retrieval

It had issues with visualizations loading in application thread casing them to be reloaded infinitly

Show diffs side-by-side

added added

removed removed

Lines of Context:
830
830
 
831
831
  // fetch directory and sort accordingly
832
832
  CFileItemList items;
833
 
  if (!CDirectory::GetDirectory(strPath, items, g_settings.m_pictureExtensions))
 
833
  if (!CDirectory::GetDirectory(strPath, items, g_settings.m_pictureExtensions,false,false,DIR_CACHE_ONCE,true,true))
834
834
    return;
835
835
  items.Sort(SORT_METHOD_LABEL, SORT_ORDER_ASC);
836
836