TabBox: Fix loading a different switcher after one has failed

We need to reset the QML Item on failure or trying to load a
different switcher afterwards will pick a wrong codepath and
also fail.

BUG: 445455
FIXED-IN: 5.25.4
This commit is contained in:
Ismael Asensio 2022-07-12 20:41:11 +02:00
parent 9e61f5039e
commit 6914c81324

View file

@ -88,7 +88,7 @@ private:
TabBoxHandlerPrivate::TabBoxHandlerPrivate(TabBoxHandler *q)
: m_qmlContext()
, m_qmlComponent()
, m_qmlComponent(nullptr)
, m_mainItem(nullptr)
{
this->q = q;
@ -289,6 +289,7 @@ QObject *TabBoxHandlerPrivate::createSwitcherItem(bool desktopMode)
"Contact your distribution about this.")
<< QStringLiteral("20");
KProcess::startDetached(QStringLiteral("kdialog"), args);
m_qmlComponent.reset(nullptr);
} else {
QObject *object = m_qmlComponent->create(m_qmlContext.data());
if (desktopMode) {