Skip cursor_height from while loop

This commit is contained in:
Ivan Duran
2024-11-10 10:00:53 +03:00
parent 36cfecb85e
commit ad1f91b72b

View File

@ -82,6 +82,7 @@ pub fn apply(self: *Metrics, mods: ModifierSet) void {
},
inline else => |tag| {
if (tag == .cursor_height) continue; // Skip cursor_height since it's handled above
@field(self, @tagName(tag)) = entry.value_ptr.apply(@field(self, @tagName(tag)));
},
}