diff src/layout.c @ 165:d7067ec71042

basic support for marks in view_file_icon.c
author nadvornik
date Sat, 22 Dec 2007 09:51:12 +0000
parents 1a42a2451575
children 4d14387b7bb7
line wrap: on
line diff
--- a/src/layout.c	Thu Dec 20 22:43:52 2007 +0000
+++ b/src/layout.c	Sat Dec 22 09:51:12 2007 +0000
@@ -906,7 +906,7 @@
 	if (!layout_valid(&lw)) return;
 
 	if (lw->vfl) vflist_mark_to_selection(lw->vfl, mark, mode);
-	// FIXME vficon
+	if (lw->vfi) vficon_mark_to_selection(lw->vfi, mark, mode);
 }
 
 void layout_selection_to_mark(LayoutWindow *lw, gint mark, SelectionToMarkMode mode)
@@ -914,7 +914,7 @@
 	if (!layout_valid(&lw)) return;
 
 	if (lw->vfl) vflist_selection_to_mark(lw->vfl, mark, mode);
-	// FIXME vficon
+	if (lw->vfi) vficon_selection_to_mark(lw->vfi, mark, mode);
 	
 	layout_status_update_info(lw, NULL); /* osd in fullscreen mode */
 }