From f43df7469ca80ae712259e6234fde3e194219b8d Mon Sep 17 00:00:00 2001 From: Klaus Ethgen Date: Fri, 10 Apr 2009 13:54:08 +0000 Subject: [PATCH] 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. --- src/collect.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/collect.c b/src/collect.c index 2a783185..6d42bc29 100644 --- a/src/collect.c +++ b/src/collect.c @@ -606,6 +606,7 @@ void collection_randomize(CollectionData *cd) 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)); -- 2.20.1