1
0
Fork 0
mirror of https://github.com/gwm17/implot.git synced 2024-10-09 23:57:26 -04:00

Merge pull request #84 from ozlb/patch-1

PlotText color
This commit is contained in:
Evan Pezent 2020-08-16 00:18:12 -05:00 committed by GitHub
commit df0a159391
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3440,10 +3440,11 @@ void PlotText(const char* text, double x, double y, bool vertical, const ImVec2&
ImDrawList & DrawList = *ImGui::GetWindowDrawList(); ImDrawList & DrawList = *ImGui::GetWindowDrawList();
PushPlotClipRect(); PushPlotClipRect();
ImVec2 pos = PlotToPixels(ImPlotPoint(x,y)) + pixel_offset; ImVec2 pos = PlotToPixels(ImPlotPoint(x,y)) + pixel_offset;
ImU32 colTxt = ImGui::GetColorU32(ImGuiCol_Text);
if (vertical) if (vertical)
AddTextVertical(&DrawList, text, pos, gp.Col_Txt); AddTextVertical(&DrawList, text, pos, colTxt);
else else
DrawList.AddText(pos, gp.Col_Txt, text); DrawList.AddText(pos, colTxt, text);
PopPlotClipRect(); PopPlotClipRect();
} }