Disable rendering of interactive features when exporting as Drawfile.

svn path=/trunk/netsurf/; revision=13249
This commit is contained in:
Michael Drake 2011-12-06 19:28:14 +00:00
parent 4e3a4448ec
commit c673ba6c23
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ bool save_as_draw(hlcache_handle *h, const char *path)
size_t drawfile_size;
os_error *error;
struct redraw_context ctx = {
.interactive = true,
.interactive = false,
.plot = &ro_save_draw_plotters
};