Currently, to change something like keepMargins (normally set by a command-line option), you need to change a global Drawing.keepMargins. Instead, we should be passing around a settings object with keys like keepMargins, so that it's easier to use in API mode (e.g. in GUI with multiple tabs each with different settings).
Currently, to change something like
keepMargins
(normally set by a command-line option), you need to change a globalDrawing.keepMargins
. Instead, we should be passing around asettings
object with keys likekeepMargins
, so that it's easier to use in API mode (e.g. in GUI with multiple tabs each with different settings).