# HG changeset patch # User mow # Date 1239371648 0 # Node ID b1e622788c4a127e4a7b51b0ec1f8c3e89f781f8 # Parent 760f585d9fa0f5d23b1ec0f7aa7d73513eab9b1d Just update the internal sort method There is no other use of the internal sort method than speeding up the sorting of a collection. So setting it to SORT_NONE is the better choice. diff -r 760f585d9fa0 -r b1e622788c4a src/collect.c --- a/src/collect.c Fri Apr 10 13:44:37 2009 +0000 +++ b/src/collect.c Fri Apr 10 13:54:08 2009 +0000 @@ -606,6 +606,7 @@ if (!cd) return; cd->list = collection_list_randomize(cd->list); + cd->sort_method = SORT_NONE; if (cd->list) cd->changed = TRUE; collection_window_refresh(collection_window_find(cd));