Parsing image escapes and markup will only occur if their respective options are enabled

This commit is contained in:
Scoopta
2019-12-16 19:38:12 -08:00
parent c248461260
commit 8594fc52a3
3 changed files with 28 additions and 11 deletions

View File

@@ -235,11 +235,18 @@ static GtkWidget* create_label(char* mode, char* text, char* search_text, char*
gtk_container_add(GTK_CONTAINER(box), label);
}
if(parse_search) {
search_text = parse_images(WOFI_PROPERTY_BOX(box), search_text, false);
char* out;
pango_parse_markup(search_text, -1, 0, NULL, &out, NULL, NULL);
free(search_text);
search_text = out;
search_text = strdup(search_text);
if(allow_images) {
char* tmp = search_text;
search_text = parse_images(WOFI_PROPERTY_BOX(box), search_text, false);
free(tmp);
}
if(allow_markup) {
char* out;
pango_parse_markup(search_text, -1, 0, NULL, &out, NULL, NULL);
free(search_text);
search_text = out;
}
}
wofi_property_box_add_property(WOFI_PROPERTY_BOX(box), "filter", search_text);
if(parse_search) {
@@ -433,6 +440,10 @@ bool wofi_allow_images() {
return allow_images;
}
bool wofi_allow_markup() {
return allow_markup;
}
uint64_t wofi_get_image_size() {
return image_size;
}