The action: 'configuration' now accept an option argument.

The argument is the name of the config dialog to open, ex: 'advanced/engine'

So you can call:
 enlightenment_remote -exec-action configuration "appearance/theme"

to open the theme congif dialog.



SVN revision: 39588
This commit is contained in:
Davide Andreoli 2009-03-19 18:28:01 +00:00
parent 9865485664
commit 8e472fa7c4
1 changed files with 4 additions and 1 deletions

View File

@ -191,7 +191,10 @@ _e_mod_action_conf_cb(E_Object *obj, const char *params)
zone = e_util_zone_current_get(e_manager_current_get());
}
if (!zone) zone = e_util_zone_current_get(e_manager_current_get());
if (zone) e_configure_show(zone->container);
if (zone && params)
e_configure_registry_call(params, zone->container, params);
else if (zone)
e_configure_show(zone->container);
}
/* menu item callback(s) */