Skip to content

Do not trigger assert when closing tab.

Lamarque Souza requested to merge fix_crash_on_disconnect into master

TabbedViewWidget::removePage is called twice for the same page, which leads to assert being triggered on the second run. It is called by those two signals in mainwindow.cpp:

connect(disconnectAction, SIGNAL(triggered()), SLOT(disconnectHost())); connect(view, SIGNAL(disconnected()), this, SLOT(disconnectHost()));

BUG: 398878

Edited by Lamarque Souza

Merge request reports