Skip to content

Commit d38144d

Browse files
Update LText to Label, reflecting changes in AbstractPlotting 0.15.
1 parent 8aa594c commit d38144d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ KernelDensity = "5ab0869b-81aa-558d-bb23-cbf5423bbe9b"
1212
OnlineStats = "a15396b6-48d5-5d58-9928-6d29437db91e"
1313

1414
[compat]
15-
AbstractPlotting = "0.12, 0.13, 0.14, 0.15"
15+
AbstractPlotting = "0.15"
1616
ColorSchemes = "3.10"
1717
Colors = "0.12"
1818
DynamicPPL = "0.9, 0.10"

src/Turkie.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function TurkieCallback(vars::Dict, params::Dict)
6767
axis_dict = Dict()
6868
for (i, (variable, plots)) in enumerate(vars)
6969
data[variable] = MovingWindow(window, Float32)
70-
axis_dict[(variable, :varname)] = layout[i, 1, Left()] = LText(scene, string(variable), textsize = 30)
70+
axis_dict[(variable, :varname)] = layout[i, 1, Left()] = Label(scene, string(variable), textsize = 30)
7171
axis_dict[(variable, :varname)].padding = (0, 50, 0, 0)
7272
onlineplot!(scene, layout, axis_dict, plots, iter, data, variable, i)
7373
end

0 commit comments

Comments
 (0)