Skip to content

Commit

Permalink
Merge pull request #26 from gbm19/bugfixes
Browse files Browse the repository at this point in the history
Fix bug #427: Color Change in Plot Details
  • Loading branch information
highperformancecoder committed May 15, 2022
2 parents 9eece99 + 94695c5 commit a938471
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libscidavis/src/PlotDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1549,7 +1549,9 @@ void PlotDialog::setActiveCurve(CurveTreeItem *item)
style = 6;
boxConnect->setCurrentIndex(style);

penWidget->blockSignals(true);
penWidget->setPen(c->pen());
penWidget->blockSignals(false);
fillGroupBox->blockSignals(true);
fillGroupBox->setChecked(c->brush().style() != Qt::NoBrush);
fillGroupBox->blockSignals(false);
Expand Down

0 comments on commit a938471

Please sign in to comment.