projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cda39e7
)
[access] save configuration value immediately
author
Shinwoo Kim
<kimcinoo.efl@gmail.com>
Wed, 30 Jan 2013 10:22:32 +0000
(10:22 +0000)
committer
Shinwoo Kim
<kimcinoo.efl@gmail.com>
Wed, 30 Jan 2013 10:22:32 +0000
(10:22 +0000)
SVN revision: 83473
src/modules/access/e_mod_main.c
patch
|
blob
|
history
diff --git
a/src/modules/access/e_mod_main.c
b/src/modules/access/e_mod_main.c
index
71483b4
..
7ac3a70
100644
(file)
--- a/
src/modules/access/e_mod_main.c
+++ b/
src/modules/access/e_mod_main.c
@@
-750,6
+750,7
@@
_cb_client_message(void *data __UNUSED__,
if (event->message_type != _atom_access)
return ECORE_CALLBACK_PASS_ON;
+ e_config_save_block_set(0);
if ((Eina_Bool)event->data.l[0])
{
EINA_LOG_INFO("[access module] module enable");
@@
-766,7
+767,8
@@
_cb_client_message(void *data __UNUSED__,
}
/* save config value */
- e_config_save_queue();
+ e_config_domain_save("module.access", conf_edd, access_config);
+ e_config_save_block_set(1);
return ECORE_CALLBACK_PASS_ON;
}