Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/uharfbuzz/_font.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -549,9 +549,9 @@ cdef class Font:
return position
return None

def get_metric_position_with_fallback(font, tag: OTMetricsTag) -> int:
def get_metric_position_with_fallback(self, tag: OTMetricsTag) -> int:
cdef hb_position_t position
hb_ot_metrics_get_position_with_fallback(font._hb_font, tag, &position)
hb_ot_metrics_get_position_with_fallback(self._hb_font, tag, &position)
return position

def get_metric_variation(self, tag: OTMetricsTag) -> float:
Expand Down
Loading