diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp index 1e3006d384be4ee5344d835c6bb944b9db0d8a4f..bdd7761e7f115df844aa74ac9b3f2189721b05f8 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp @@ -519,10 +519,8 @@ void PropertyEditor::collapse() QSplitter* parentSplitter = qobject_cast<QSplitter*>(sideBar->parentWidget()); QList<int> s = parentSplitter->sizes(); - qDebug() << s; s.removeLast(); s.append(25); - qDebug() << s; parentSplitter->setSizes(s); parentSplitter->refresh(); parentSplitter->update();