Skip to content

Commit

Permalink
Clarify pose variable accessors in variables panel (#1191)
Browse files Browse the repository at this point in the history
  • Loading branch information
shueja authored Feb 5, 2025
1 parent 4171488 commit 06012c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/config/variables/PoseVariablesConfigPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const PoseVariablePanel = observer(
enabled
maxWidthCharacters={6}
key={entry[0] + ".x"}
title={"x"}
title={".x"}
number={entry[1].x}
></ExpressionInput>

Expand All @@ -82,7 +82,7 @@ const PoseVariablePanel = observer(
enabled
maxWidthCharacters={6}
key={entry[0] + ".y"}
title={"y"}
title={".y"}
number={entry[1].y}
></ExpressionInput>
<span></span>
Expand All @@ -92,7 +92,7 @@ const PoseVariablePanel = observer(
key={entry[0] + ".heading"}
enabled
maxWidthCharacters={6}
title={"θ"}
title={".heading"}
number={entry[1].heading}
></ExpressionInput>
<span></span>
Expand Down

0 comments on commit 06012c8

Please sign in to comment.