Skip to content

Commit

Permalink
Merge pull request #1393 from googlefonts/issue-1386
Browse files Browse the repository at this point in the history
Use unfiltered fontAxes in Add source / Source properties dialog
  • Loading branch information
justvanrossum authored May 25, 2024
2 parents 7d85f07 + 6cb3a4f commit 41c6215
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fontra/views/editor/panel-designspace-navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -993,7 +993,7 @@ export default class DesignspaceNavigationPanel extends Panel {
const glyphAxisNames = glyph.axes.map((axis) => axis.name);
const fontAxes = mapAxesFromUserSpaceToSourceSpace(
// Don't include font axes that also exist as glyph axes
this.fontAxes.filter((axis) => !glyphAxisNames.includes(axis.name))
this.fontController.fontAxes.filter((axis) => !glyphAxisNames.includes(axis.name))
);
return [
...fontAxes,
Expand Down

0 comments on commit 41c6215

Please sign in to comment.