Skip to content

Commit a7a3bfa

Browse files
set GLMakie to not render in window for the docs
1 parent 0f19713 commit a7a3bfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/model_simulation/examples/interactive_brusselator_simulation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Let's again use the oscillating Brusselator model, extending the basic simulatio
1010
```@example interactive_brusselator
1111
using Catalyst
1212
using OrdinaryDiffEq
13-
using GLMakie; GLMakie.activate!(inline = true) # Activate the GLMakie backend. Here we set `inline = true` so that the plot is displayed inline for this documentation, but you can leave it out in your own work if you prefer plots displayed in a separate window.
13+
using GLMakie; GLMakie.activate!(inline = true, visible = false) # Activate the GLMakie backend. Here we set `inline = true` and `visible = false` so that the plot is displayed inline for this documentation, but you can leave it out in your own work if you prefer plots displayed in a separate window.
1414
1515
# Define the Brusselator model
1616
brusselator = @reaction_network begin

0 commit comments

Comments
 (0)