aboutsummaryrefslogtreecommitdiffstats
path: root/filter/filter-druid.c
diff options
context:
space:
mode:
Diffstat (limited to 'filter/filter-druid.c')
-rw-r--r--filter/filter-druid.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/filter/filter-druid.c b/filter/filter-druid.c
index 4b7951a7c2..5dfd66acca 100644
--- a/filter/filter-druid.c
+++ b/filter/filter-druid.c
@@ -216,6 +216,7 @@ html_write_options(GtkHTML *html, struct filter_option *option, char *def)
for (i=0;i<sizeof(display_order)/sizeof(display_order[0]);i++) {
int doneheader = FALSE;
+ int donefirst = FALSE;
optionrulel = option->options;
while (optionrulel) {
struct filter_optionrule *or = optionrulel->data;
@@ -226,7 +227,11 @@ html_write_options(GtkHTML *html, struct filter_option *option, char *def)
doneheader = TRUE;
}
+ if (donefirst) {
+ gtk_html_write(html, stream, "&nbsp;&nbsp;&nbsp;<i>and</i> ", strlen("&nbsp;&nbsp;&nbsp;<i>and</i> "));
+ }
filter_description_html_write(or->rule->description, or->args, html, stream);
+ donefirst = TRUE;
gtk_html_write(html, stream, "<br>", strlen("<br>"));
}
optionrulel = g_list_next(optionrulel);