Execplugin: add pango markup option

This commit is contained in:
o9000
2015-12-05 11:42:07 +01:00
parent ad50d32f54
commit 17f94205b4
9 changed files with 32 additions and 12 deletions

View File

@@ -531,6 +531,9 @@ void add_entry(char *key, char *value)
} else if (strcmp(key, "execp_continuous") == 0) {
Execp *execp = get_or_create_last_execp();
execp->backend->continuous = atoi(value);
} else if (strcmp(key, "execp_markup") == 0) {
Execp *execp = get_or_create_last_execp();
execp->backend->has_markup = atoi(value);
} else if (strcmp(key, "execp_cache_icon") == 0) {
Execp *execp = get_or_create_last_execp();
execp->backend->cache_icon = atoi(value);