impr: Better background opacity for the digital signal visualizer

This commit is contained in:
WerWolv
2024-06-20 22:33:55 +02:00
parent 24f535474a
commit beef0fff33

View File

@@ -81,7 +81,7 @@ namespace hex::plugin::visualizers {
ImPlot::PushPlotClipRect();
auto transparentColor = left.color;
transparentColor.Value.w = 0.4F;
transparentColor.Value.w = 0.2F;
ImPlot::GetPlotDrawList()->AddRectFilled(min, max, transparentColor);
ImPlot::PopPlotClipRect();
}