Skip to content

Commit e93e23d

Browse files
Merge pull request #2081 from zsoerenm/ss/icon_name-to-type
Change icon_name to type
2 parents 163dcae + 34cca97 commit e93e23d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/systems/abstractsystem.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
const SYSTEM_COUNT = Threads.Atomic{UInt}(0)
22

33
struct GUIMetadata
4-
icon_name::String
4+
type::String
55
layout::Any
66
end
77

8-
GUIMetadata(icon_name) = GUIMetadata(icon_name, nothing)
8+
GUIMetadata(type) = GUIMetadata(type, nothing)
99

1010
"""
1111
```julia

0 commit comments

Comments
 (0)