Made the image list select an image near the one you removed rather than

jump to the beginning.
This commit is contained in:
Davis King 2011-06-19 14:25:13 -04:00
parent ddaa9133ea
commit b5511d2cb3
1 changed files with 6 additions and 1 deletions

View File

@ -129,11 +129,14 @@ remove_selected_images()
dlib::queue<unsigned long>::kernel_1a list;
lb_images.get_selected(list);
list.reset();
unsigned long min_idx = lb_images.size();
while (list.move_next())
{
lb_images.unselect(list.element());
min_idx = std::min(min_idx, list.element());
}
// remove all the selected items from metadata.images
dlib::static_set<unsigned long>::kernel_1a to_remove;
to_remove.load(list);
@ -158,7 +161,9 @@ remove_selected_images()
lb_images.load(files);
select_image(0);
if (min_idx != 0)
min_idx--;
select_image(min_idx);
}
// ----------------------------------------------------------------------------------------