From 5cb2ebcfa2a4534725c2886c0112d8954e102403 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sun, 2 Jun 2013 01:55:12 +0400 Subject: [PATCH] fixed a bug in marks.js, now everything uses imageOrderCmp for sorting... Signed-off-by: Alex A. Naanou --- ui/marks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/marks.js b/ui/marks.js index 9ab106ae..483cb917 100755 --- a/ui/marks.js +++ b/ui/marks.js @@ -17,7 +17,7 @@ // not exist, as there is no way to distinguish between the two // situations the cleanup is optional... function loadMarkedOnlyData(cmp, no_cleanout_marks){ - cmp = cmp == null ? imageDateCmp : cmp + cmp = cmp == null ? imageOrderCmp : cmp var cur = DATA.current var marked = MARKED.slice().sort(cmp) // this will ignore any gid in marks that is not in IMAGES...