macos: setup sequence for SplitTree

This commit is contained in:
Mitchell Hashimoto
2025-06-03 15:57:01 -07:00
parent 672d276276
commit 33d94521ea
3 changed files with 53 additions and 28 deletions

View File

@@ -11,7 +11,7 @@ extension Ghostty {
/// "container" which has a recursive top/left SplitNode and bottom/right SplitNode. These
/// values can further be split infinitely.
///
enum SplitNode: Equatable, Hashable, Codable, Sequence {
enum SplitNode: Equatable, Hashable, Codable {
case leaf(Leaf)
case split(Container)