We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cd8a01 commit a1393d5Copy full SHA for a1393d5
src/DockAreaWidget.cpp
@@ -726,6 +726,9 @@ void CDockAreaWidget::setCurrentIndex(int index)
726
TabBar->setCurrentIndex(index);
727
d->ContentsLayout->setCurrentIndex(index);
728
d->ContentsLayout->currentWidget()->show();
729
+ // Force the repaint of the current widget because mix of OpenGL widgets
730
+ // and Raster widgets could have not been entirely rendered
731
+ d->ContentsLayout->currentWidget()->repaint();
732
Q_EMIT currentChanged(index);
733
}
734
0 commit comments