forked from enviPath/enviPy
[Fix] AppDomain Leftovers (#161)
Co-authored-by: Tim Lorsbach <tim@lorsba.ch> Reviewed-on: enviPath/enviPy#161
This commit is contained in:
@ -729,6 +729,7 @@ class IndigoUtils(object):
|
||||
height: int = 0,
|
||||
educt_functional_groups: Dict[str, int] = None,
|
||||
product_functional_groups: Dict[str, int] = None,
|
||||
debug: bool = False,
|
||||
):
|
||||
if educt_functional_groups is None:
|
||||
educt_functional_groups = {}
|
||||
@ -739,6 +740,11 @@ class IndigoUtils(object):
|
||||
i = Indigo()
|
||||
renderer = IndigoRenderer(i)
|
||||
|
||||
if debug:
|
||||
i.setOption("render-atom-ids-visible", True)
|
||||
i.setOption("render-bond-ids-visible", False)
|
||||
i.setOption("render-atom-bond-ids-from-one", True)
|
||||
|
||||
i.setOption("render-output-format", "svg")
|
||||
i.setOption("render-coloring", True)
|
||||
i.setOption("render-image-size", width, height)
|
||||
|
||||
Reference in New Issue
Block a user