From cb62cd7b855c3620ff9881383e48a0ed1d7ad183 Mon Sep 17 00:00:00 2001 From: Thibault GEFFROY Date: Mon, 17 Mar 2025 16:29:06 +0100 Subject: [PATCH] Force the repaint of widgets in order that widgets dealing whith raster and openGL widgets are correctly rendered --- src/DockAreaWidget.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/DockAreaWidget.cpp b/src/DockAreaWidget.cpp index 9176387..bd554ff 100644 --- a/src/DockAreaWidget.cpp +++ b/src/DockAreaWidget.cpp @@ -726,6 +726,9 @@ void CDockAreaWidget::setCurrentIndex(int index) TabBar->setCurrentIndex(index); d->ContentsLayout->setCurrentIndex(index); d->ContentsLayout->currentWidget()->show(); + // Force the repaint of the current widget because mix of OpenGL widgets + // and Raster widgets could have not been entirely rendered + d->ContentsLayout->currentWidget()->repaint(); Q_EMIT currentChanged(index); }