summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/settings.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/settings.c b/src/core/settings.c
index 68e5de75..edf87953 100644
--- a/src/core/settings.c
+++ b/src/core/settings.c
@@ -473,6 +473,12 @@ static int backwards_compatibility(const char *module, CONFIG_NODE *node,
g_free(new_value);
config_changed = TRUE;
return new_key != NULL;
+ } else if (strcasecmp(node->key, "actlist_moves") == 0 &&
+ node->value != NULL && strcasecmp(node->value, "yes") == 0) {
+ config_node_set_str(mainconfig, parent, "actlist_sort", "recent");
+ config_node_set_str(mainconfig, parent, node->key, NULL);
+ config_changed = TRUE;
+ return TRUE;
}
}
new_value = NULL, new_key = NULL;