summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--render/html.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/render/html.c b/render/html.c
index 364083bae..3fdbc5beb 100644
--- a/render/html.c
+++ b/render/html.c
@@ -1134,18 +1134,15 @@ static bool html_convert(struct content *c)
bool html_can_begin_conversion(html_content *htmlc)
{
unsigned int i;
- bool got_modified_stylesheet = false;
+
+ if (htmlc->base.active != 0)
+ return false;
for (i = 0; i != htmlc->stylesheet_count; i++) {
- if (htmlc->stylesheets[i].modified) {
- got_modified_stylesheet = true;
- break;
- }
+ if (htmlc->stylesheets[i].modified)
+ return false;
}
- if (htmlc->base.active != 0 || got_modified_stylesheet)
- return false;
-
return true;
}