mirror of
https://github.com/gwm17/implot.git
synced 2024-11-23 02:38:53 -05:00
PlotText color
PlotText color properties inherited from ImGuiCol_Text, so it can be customized by `ImGui::PushStyleColor(ImGuiCol_Text, <myColor>);`
This commit is contained in:
parent
5c9679c2ab
commit
ab9217049a
|
@ -3439,10 +3439,11 @@ void PlotText(const char* text, double x, double y, bool vertical, const ImVec2&
|
|||
ImDrawList & DrawList = *ImGui::GetWindowDrawList();
|
||||
PushPlotClipRect();
|
||||
ImVec2 pos = PlotToPixels(ImPlotPoint(x,y)) + pixel_offset;
|
||||
ImU32 colTxt = ImGui::GetColorU32(ImGuiCol_Text);
|
||||
if (vertical)
|
||||
AddTextVertical(&DrawList, text, pos, gp.Col_Txt);
|
||||
AddTextVertical(&DrawList, text, pos, colTxt);
|
||||
else
|
||||
DrawList.AddText(pos, gp.Col_Txt, text);
|
||||
DrawList.AddText(pos, colTxt, text);
|
||||
PopPlotClipRect();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user