update old configs to show list by default

SVN revision: 48321
This commit is contained in:
Hannes Janetzek 2010-04-25 22:19:24 +00:00
parent e82f19ceb9
commit 2ea8184b90
1 changed files with 8 additions and 2 deletions

View File

@ -12,7 +12,7 @@
/* #undef DBG
* #define DBG(...) ERR(__VA_ARGS__) */
#define CONFIG_VERSION 13
#define CONFIG_VERSION 14
/* actual module specifics */
static void _e_mod_action_cb(E_Object *obj, const char *params);
@ -253,9 +253,15 @@ _config_init()
evry_conf->conf_actions = NULL;
evry_conf->conf_objects = NULL;
evry_conf->version = CONFIG_VERSION;
evry_conf->version = 13;
}
if (evry_conf && evry_conf->version <= 13)
{
evry_conf->hide_list = 0;
evry_conf->version = CONFIG_VERSION;
}
if (evry_conf && evry_conf->version != CONFIG_VERSION)
{
_config_free();