disable more debug messages

pull/1/head
Michail Vourlakos 8 years ago
parent fa42c71a6a
commit ca97e6d486

@ -227,7 +227,7 @@ int DockCorona::docksCount(int screen) const
}
}
qDebug() << docks << "docks on screen:" << screen;
// qDebug() << docks << "docks on screen:" << screen;
return docks;
}

@ -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)

@ -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();

@ -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;

Loading…
Cancel
Save