diff --git a/app/dockcorona.cpp b/app/dockcorona.cpp index 13a7b51c7..440a8d887 100644 --- a/app/dockcorona.cpp +++ b/app/dockcorona.cpp @@ -227,7 +227,7 @@ int DockCorona::docksCount(int screen) const } } - qDebug() << docks << "docks on screen:" << screen; + // qDebug() << docks << "docks on screen:" << screen; return docks; } diff --git a/app/dockview.cpp b/app/dockview.cpp index 0c807eb4a..a82db7e0f 100644 --- a/app/dockview.cpp +++ b/app/dockview.cpp @@ -300,7 +300,7 @@ inline void DockView::syncGeometry() resizeWindow(); updatePosition(); updateAbsDockGeometry(); - qDebug() << "dock geometry:" << qRectToStr(geometry()); + // qDebug() << "dock geometry:" << qRectToStr(geometry()); } void DockView::statusChanged(Plasma::Types::ItemStatus status) diff --git a/app/visibilitymanager.cpp b/app/visibilitymanager.cpp index ca05d5b47..44f1e4162 100644 --- a/app/visibilitymanager.cpp +++ b/app/visibilitymanager.cpp @@ -45,13 +45,13 @@ VisibilityManagerPrivate::VisibilityManagerPrivate(PlasmaQuick::ContainmentView connect(&timerCheckWindows, &QTimer::timeout, this, &VisibilityManagerPrivate::checkAllWindows); connect(&timerShow, &QTimer::timeout, this, [this]() { if (isHidden) { - qDebug() << "must be shown"; + // qDebug() << "must be shown"; emit this->q->mustBeShown(); } }); connect(&timerHide, &QTimer::timeout, this, [this]() { if (!blockHiding && !isHidden && !dragEnter) { - qDebug() << "must be hide"; + // qDebug() << "must be hide"; emit this->q->mustBeHide(); } }); @@ -181,7 +181,7 @@ void VisibilityManagerPrivate::setBlockHiding(bool blockHiding) return; this->blockHiding = blockHiding; - qDebug() << "blockHiding:" << blockHiding; + // qDebug() << "blockHiding:" << blockHiding; if (this->blockHiding) { timerHide.stop(); diff --git a/containment/contents/ui/main.qml b/containment/contents/ui/main.qml index 0b7aa60d8..53059ad3a 100644 --- a/containment/contents/ui/main.qml +++ b/containment/contents/ui/main.qml @@ -564,7 +564,7 @@ DragDrop.DropArea { return; } - console.debug("user configuring", plasmoid.userConfiguring) + // console.debug("user configuring", plasmoid.userConfiguring) if (plasmoid.userConfiguring) { dock.visibility.blockHiding = true;