From f03220eadd3dac4539b1ce43fa19a49752cc8bcb Mon Sep 17 00:00:00 2001 From: Vid Kersic Date: Tue, 3 Oct 2023 13:44:20 +0200 Subject: [PATCH] fix: render --- src/execute.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/execute.rs b/src/execute.rs index 3049e5e86..4fb397a26 100644 --- a/src/execute.rs +++ b/src/execute.rs @@ -812,7 +812,7 @@ pub(crate) fn render(model: PathBuf, output: PathBuf, args: RunArgs) -> Result<( halo2_proofs::dev::CircuitLayout::default() // We hide labels, else most circuits become impossible to decipher because of overlaid text .show_labels(false) - .render(circuit.settings.run_args.logrows, &circuit, &root)?; + .render(circuit.settings().run_args.logrows, &circuit, &root)?; Ok(()) }