Update toolwindowmanager to 7974fc8

This commit is contained in:
baldurk
2020-08-28 11:57:13 +01:00
parent 80ededa2e4
commit 02b7c1bfe5
2 changed files with 2 additions and 2 deletions
@@ -829,7 +829,7 @@ void ToolWindowManager::startDrag(const QList<QWidget *> &toolWindows,
QVariantMap ToolWindowManager::saveSplitterState(QSplitter *splitter)
{
QVariantMap result;
result[QStringLiteral("state")] = splitter->saveState().toBase64();
result[QStringLiteral("state")] = QString::fromLatin1(splitter->saveState().toBase64());
result[QStringLiteral("type")] = QStringLiteral("splitter");
QVariantList items;
for(int i = 0; i < splitter->count(); i++)