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 edc9bce commit cb62cd7Copy full SHA for cb62cd7
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