From: Klaus Ethgen Date: Fri, 10 Apr 2009 13:54:08 +0000 (+0000) Subject: Just update the internal sort method X-Git-Tag: v1.0.0~267 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=f43df7469ca80ae712259e6234fde3e194219b8d 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 --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));