mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
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:
parent
ebaf0897d1
commit
b25d59dc07
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user