Mercurial > audlegacy
comparison audacious/main.c @ 1358:0c41255487ee trunk
[svn] - add toggle option for filepopup window
author | yaz |
---|---|
date | Thu, 29 Jun 2006 02:57:27 -0700 |
parents | cc57f7545876 |
children | 878c7f8d0a8c |
comparison
equal
deleted
inserted
replaced
1357:0675e21d50ea | 1358:0c41255487ee |
---|---|
200 TRUE, /* show seperators in pl */ | 200 TRUE, /* show seperators in pl */ |
201 NULL, | 201 NULL, |
202 NULL, | 202 NULL, |
203 3000, /* audio buffer size */ | 203 3000, /* audio buffer size */ |
204 FALSE, /* whether or not to postpone format detection on initial add */ | 204 FALSE, /* whether or not to postpone format detection on initial add */ |
205 TRUE, /* show filepopup for tuple */ | |
205 }; | 206 }; |
206 | 207 |
207 typedef struct bmp_cfg_boolent_t { | 208 typedef struct bmp_cfg_boolent_t { |
208 char const *be_vname; | 209 char const *be_vname; |
209 gboolean *be_vloc; | 210 gboolean *be_vloc; |
291 {"custom_cursors", &cfg.custom_cursors, TRUE}, | 292 {"custom_cursors", &cfg.custom_cursors, TRUE}, |
292 {"close_dialog_open", &cfg.close_dialog_open, TRUE}, | 293 {"close_dialog_open", &cfg.close_dialog_open, TRUE}, |
293 {"close_dialog_add", &cfg.close_dialog_add, TRUE}, | 294 {"close_dialog_add", &cfg.close_dialog_add, TRUE}, |
294 {"resume_playback_on_startup", &cfg.resume_playback_on_startup, TRUE}, | 295 {"resume_playback_on_startup", &cfg.resume_playback_on_startup, TRUE}, |
295 {"playlist_detect", &cfg.playlist_detect, TRUE}, | 296 {"playlist_detect", &cfg.playlist_detect, TRUE}, |
297 {"show_filepopup_for_tuple", &cfg.show_filepopup_for_tuple, TRUE}, | |
296 }; | 298 }; |
297 | 299 |
298 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents); | 300 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents); |
299 | 301 |
300 static bmp_cfg_nument bmp_numents[] = { | 302 static bmp_cfg_nument bmp_numents[] = { |