Skip to content

Commit 2b9429c

Browse files
committed
Adapted to GLMakie 0.8 (textsize replaced by fontsize in src/makie.jl)
1 parent ec654df commit 2b9429c

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SignalTables"
22
uuid = "3201582d-3078-4276-ba5d-0a1254d79d7c"
33
authors = ["Martin.Otter@dlr.de <Martin.Otter@dlr.de>"]
4-
version = "0.4.3"
4+
version = "0.4.4"
55

66
[deps]
77
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"

docs/src/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,10 @@ are different to the Python 2.x version.
188188

189189
## Release Notes
190190

191+
### Version 0.4.4
192+
193+
- Adapted to GLMakie 0.8 (`textsize` replaced by `fontsize` in src/makie.jl)
194+
191195
### Version 0.4.3
192196

193197
- Minor improvements when printing a SignalTable.

src/makie.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,10 +333,10 @@ function plot(result, names::AbstractMatrix; heading::AbstractString="", grid::B
333333

334334
# Add overall heading in case of a matrix of diagrams (ncol > 1) and add a figure label on the top level
335335
if hasTopHeading
336-
fig[0,:] = Label(fig, heading2, textsize = 14)
336+
fig[0,:] = Label(fig, heading2, fontsize = 14)
337337
end
338338
if showFigureStringInDiagram
339-
figText = fig[1,1,TopLeft()] = Label(fig, "showFigure(" * string(figure) * ")", textsize=9, color=:blue, halign = :left)
339+
figText = fig[1,1,TopLeft()] = Label(fig, "showFigure(" * string(figure) * ")", fontsize=9, color=:blue, halign = :left)
340340
if hasTopHeading
341341
figText.padding = (0, 0, 5, 0)
342342
else

0 commit comments

Comments
 (0)