diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2016-05-13 20:25:08 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2016-05-13 20:25:08 (GMT) | 
| commit | 8802a479f37dde99f2709af50cf15e595e32b47e (patch) | |
| tree | 862c87ade243603a6eeca1804df42ca9f574678b /src/glibext/configuration.c | |
| parent | ee0954cd4f25cbd926f9b4e4ba121c34877b1cb4 (diff) | |
Handled positions for both sides of paned widgets.
Diffstat (limited to 'src/glibext/configuration.c')
| -rw-r--r-- | src/glibext/configuration.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glibext/configuration.c b/src/glibext/configuration.c index a8f8af3..29d6f49 100644 --- a/src/glibext/configuration.c +++ b/src/glibext/configuration.c @@ -1020,7 +1020,7 @@ static void g_config_group_load(GCfgGroup *group, GGenConfig *config, xmlXPathCo      for (i = 0; i < XPATH_OBJ_NODES_COUNT(xpathObj); i++)      { -        asprintf(&key, "gui.panels.positions.%s", NODE_FROM_PATH_OBJ(xpathObj, i)->name); +        asprintf(&key, "%s.%s", group->root, NODE_FROM_PATH_OBJ(xpathObj, i)->name);          param = g_config_param_new(key, CPT_INTEGER, -1);          _g_generic_config_add_param(config, param, false);  | 
