Skip to content

Commit

Permalink
[skip ci] fixed add_text_point #450
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffstadt committed Jan 6, 2021
1 parent 4f4cece commit 6a629eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DearPyGui/src/core/AppItems/plots/mvLabelSeries.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace Marvel {

void draw() override
{
ImPlot::PlotText(m_name.c_str(), m_data[0][0], m_data[0][1], m_vertical,
ImPlot::PlotText(m_name.c_str(), m_data[0][0], m_data[1][0], m_vertical,
ImVec2((float)m_xoffset, (float)m_yoffset));
}

Expand Down
7 changes: 7 additions & 0 deletions docs/CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ HOW TO UPDATE?
- Read the `Breaking Changes` section (here in the changelog).
- Please report any issue!

------------------------------------------------------------------------
VERSION 0.6.122
------------------------------------------------------------------------

Fixes:
- add_text_point: fixed issue where the y value was incorrect #450

------------------------------------------------------------------------
VERSION 0.6.121
------------------------------------------------------------------------
Expand Down

0 comments on commit 6a629eb

Please sign in to comment.