1
0
mirror of https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git synced 2025-04-01 02:42:39 +08:00

Added documentation for the queued _this->ensureWidgetVisible(TabWidget) call

This commit is contained in:
Uwe Kindler 2023-06-19 10:02:19 +02:00 committed by Jon Jenssen
parent ef70fa2f4f
commit 5ed84c7cca

View File

@ -108,6 +108,9 @@ void DockAreaTabBarPrivate::updateTabs()
{
TabWidget->show();
TabWidget->setActiveTab(true);
// Sometimes the synchronous calculation of the rectangular area fails
// Therefore we use QTimer::singleShot here to execute the call
// within the event loop - see #520
QTimer::singleShot(0, [&, TabWidget]{
_this->ensureWidgetVisible(TabWidget);
});