mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-19 02:06:20 +03:00
unknown underline styles render a single underline
This commit is contained in:
@ -137,7 +137,10 @@ pub const Parser = struct {
|
||||
0 => return Attribute{ .reset_underline = {} },
|
||||
1 => return Attribute{ .underline = .single },
|
||||
2 => return Attribute{ .underline = .double },
|
||||
else => break :blk,
|
||||
|
||||
// For unknown underline styles, just render
|
||||
// a single underline.
|
||||
else => return Attribute{ .underline = .single },
|
||||
}
|
||||
},
|
||||
|
||||
|
Reference in New Issue
Block a user