Skip to content

Commit

Permalink
Graph Panel widget: prevent it from flickering when it is shown as di…
Browse files Browse the repository at this point in the history
…sabled (#2263).
  • Loading branch information
agarny committed Dec 19, 2019
1 parent 80ad6e4 commit 044356c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -2537,7 +2537,7 @@ void GraphPanelPlotWidget::setTitleAxisY(const QString &pTitleAxisY)
// To change the title of our Y axis may have some effects on the alignment
// with our neighbours, so update ourselves

if (axisTitle(QwtPlot::yLeft) != oldAxisTitle) {
if (axisTitle(QwtPlot::yLeft).text() != oldAxisTitle.text()) {
updateGui(false, true);
}
}
Expand Down

0 comments on commit 044356c

Please sign in to comment.