Fix: Wrong pen width when loading traces from file

It was found that when a session file is loaded the width of the traces was 1 regardless the trace setting. 

The pen width was omitted... This commit fixes this problem.
This commit is contained in:
andresmmera 2024-10-29 18:37:47 +01:00
parent ebaf0897d1
commit b25d59dc07

View File

@ -1285,6 +1285,7 @@ void Qucs_S_SPAR_Viewer::addTrace(QString selected_dataset, QString selected_tra
// Color settings
QPen pen;
pen.setColor(trace_color);
pen.setWidth(trace_width);
series->setPen(pen);// Apply the pen to the series
chart->addSeries(series);