comparison audacious/main.c @ 893:6afdd0d7e1e1 trunk

[svn] Make refreshing optional, default to disabled if Gnome VFS available.
author nemo
date Wed, 29 Mar 2006 07:35:54 -0800
parents a8fb5974c3a9
children c800beaac0f9
comparison
equal deleted inserted replaced
892:5e30566ad776 893:6afdd0d7e1e1
139 FALSE, /* sort jump to file */ 139 FALSE, /* sort jump to file */
140 FALSE, /* use effect plugins */ 140 FALSE, /* use effect plugins */
141 FALSE, /* always on top */ 141 FALSE, /* always on top */
142 FALSE, /* sticky */ 142 FALSE, /* sticky */
143 FALSE, /* no playlist advance */ 143 FALSE, /* no playlist advance */
144 #ifdef HAVE_GNOME_VFS
145 FALSE, /* refresh file list - should be unneeded with VFS */
146 #else
147 TRUE, /* refresh file list */
148 #endif
144 TRUE, /* UNUSED (smooth title scrolling) */ 149 TRUE, /* UNUSED (smooth title scrolling) */
145 TRUE, /* use playlist metadata */ 150 TRUE, /* use playlist metadata */
146 TRUE, /* warn about unplayables */ 151 TRUE, /* warn about unplayables */
147 FALSE, /* use \ as directory delimiter */ 152 FALSE, /* use \ as directory delimiter */
148 FALSE, /* random skin on play */ 153 FALSE, /* random skin on play */
228 {"save_window_positions", &cfg.save_window_position, TRUE}, 233 {"save_window_positions", &cfg.save_window_position, TRUE},
229 {"dim_titlebar", &cfg.dim_titlebar, TRUE}, 234 {"dim_titlebar", &cfg.dim_titlebar, TRUE},
230 {"get_info_on_load", &cfg.get_info_on_load, TRUE}, 235 {"get_info_on_load", &cfg.get_info_on_load, TRUE},
231 {"get_info_on_demand", &cfg.get_info_on_demand, TRUE}, 236 {"get_info_on_demand", &cfg.get_info_on_demand, TRUE},
232 {"no_playlist_advance", &cfg.no_playlist_advance, TRUE}, 237 {"no_playlist_advance", &cfg.no_playlist_advance, TRUE},
238 {"refresh_file_list", &cfg.refresh_file_list, TRUE},
233 {"sort_jump_to_file", &cfg.sort_jump_to_file, TRUE}, 239 {"sort_jump_to_file", &cfg.sort_jump_to_file, TRUE},
234 {"use_pl_metadata", &cfg.use_pl_metadata, TRUE}, 240 {"use_pl_metadata", &cfg.use_pl_metadata, TRUE},
235 {"warn_about_unplayables", &cfg.warn_about_unplayables, TRUE}, 241 {"warn_about_unplayables", &cfg.warn_about_unplayables, TRUE},
236 {"use_backslash_as_dir_delimiter", &cfg.use_backslash_as_dir_delimiter, TRUE}, 242 {"use_backslash_as_dir_delimiter", &cfg.use_backslash_as_dir_delimiter, TRUE},
237 {"player_shaded", &cfg.player_shaded, TRUE}, 243 {"player_shaded", &cfg.player_shaded, TRUE},