comparison src/view_file_list.c @ 1291:50ae02a4a675

replaced bar_info with an universal bar, restored the original functionality (more or less) bar configuration is not yet saved
author nadvornik
date Sat, 14 Feb 2009 19:50:54 +0000
parents 8b89e3ff286b
children 4a3ae0e6f1eb
comparison
equal deleted inserted replaced
1290:0c918f8b1f51 1291:50ae02a4a675
12 12
13 #include "main.h" 13 #include "main.h"
14 #include "view_file_list.h" 14 #include "view_file_list.h"
15 15
16 #include "bar_info.h" 16 #include "bar_info.h"
17 #include "bar.h"
17 #include "cache_maint.h" 18 #include "cache_maint.h"
18 #include "dnd.h" 19 #include "dnd.h"
19 #include "editors.h" 20 #include "editors.h"
20 #include "img-view.h" 21 #include "img-view.h"
21 #include "info.h" 22 #include "info.h"
324 GList *kw_list = string_to_keywords_list(str); 325 GList *kw_list = string_to_keywords_list(str);
325 326
326 metadata_append_list(fd, KEYWORD_KEY, kw_list); 327 metadata_append_list(fd, KEYWORD_KEY, kw_list);
327 string_list_free(kw_list); 328 string_list_free(kw_list);
328 g_free(str); 329 g_free(str);
330 /*
331 file notification should handle this automatically
329 if (vf->layout && vf->layout->bar_info) { 332 if (vf->layout && vf->layout->bar_info) {
330 bar_info_set(vf->layout->bar_info, fd); 333 bar_set_fd(vf->layout->bar_info, fd);
331 } 334 }
335 */
332 } 336 }
333 } 337 }
334 } 338 }
335 339
336 void vflist_dnd_init(ViewFile *vf) 340 void vflist_dnd_init(ViewFile *vf)