TagsEvent
public enum TagsEvent
The various tag events that can happen.
-
New tag added
Declaration
Swift
case added(new: Int, tag: LegacyTag)
-
Tag moved
Declaration
Swift
case moved(old: Int, new: Int, tag: LegacyTag)
-
Tag name changed
Declaration
Swift
case changed(index: Int, tag: LegacyTag)
-
Tag removed
Declaration
Swift
case removed(old: Int, tag: LegacyTag)
-
Tags were restored from disk / configuration
Declaration
Swift
case restored