Skip to content

Commit b4ad88f

Browse files
committed
fix figure not being a kwarg of trajectory_timeseries
1 parent 284e08c commit b4ad88f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DynamicalSystems"
22
uuid = "61744808-ddfa-5f27-97ff-6e42cc95d634"
33
repo = "https://github.com/JuliaDynamics/DynamicalSystems.jl.git"
4-
version = "3.6.3"
4+
version = "3.6.4"
55

66
[deps]
77
Attractors = "f3fd9213-ca85-4dba-9dfd-7fc91308fec7"

ext/src/interactive_trajectory.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@ function DynamicalSystems.interactive_trajectory_timeseries(
282282
Δt = DynamicalSystems.isdiscretetime(ds) ? 1 : 0.01,
283283
idxs = 1:min(length(u0s[1]), 3),
284284
lims = nothing,
285+
figure = (size = (1600, 800),),
285286
kwargs...
286287
)
287288

@@ -292,7 +293,7 @@ function DynamicalSystems.interactive_trajectory_timeseries(
292293
isnothing(lims) && (lims = _lims)
293294
isnothing(timeseries_ylims) && (timeseries_ylims = _timeseries_ylims)
294295

295-
fig, dsobs = interactive_trajectory(ds, u0s; Δt, idxs, lims, colors, figure = (size = (1600, 800),), kwargs...)
296+
fig, dsobs = interactive_trajectory(ds, u0s; Δt, idxs, lims, colors, figure, kwargs...)
296297

297298
timeserieslayout = fig[:, 2] = GridLayout()
298299
_init_timeseries_plots!(

0 commit comments

Comments
 (0)