From: Simon Rit Date: Thu, 6 Sep 2012 10:09:14 +0000 (+0200) Subject: The merge of copy/pasted code did not account for the fact it had not X-Git-Tag: v1.4.0~281^2~7 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=48549835a461e0fd831a1e2f43f0e70a3077c5ef;p=clitk.git The merge of copy/pasted code did not account for the fact it had not been copy pasted --- diff --git a/vv/vv.cxx b/vv/vv.cxx index 4a0776e..133d9dc 100644 --- a/vv/vv.cxx +++ b/vv/vv.cxx @@ -78,7 +78,7 @@ void open_sequence(vvMainWindow &window, if(open_mode==O_BASE) window.LoadImages(sequence_filenames, vvImageReader::MERGEDWITHTIME); else if (open_mode==O_OVERLAY) - window.AddOverlayImage(n_image_loaded-1,sequence_filenames,vvImageReader::IMAGE); + window.AddOverlayImage(n_image_loaded-1,sequence_filenames,vvImageReader::MERGEDWITHTIME); else { std::cerr << "Sequences are not managed for opening " << open_mode_names[open_mode] << std::endl; exit(1);