disable more debug messages

v0.6
Michail Vourlakos 8 years ago
parent 7677b5836f
commit d12cb8190f

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

@ -300,7 +300,7 @@ inline void DockView::syncGeometry()
resizeWindow(); resizeWindow();
updatePosition(); updatePosition();
updateAbsDockGeometry(); updateAbsDockGeometry();
qDebug() << "dock geometry:" << qRectToStr(geometry()); // qDebug() << "dock geometry:" << qRectToStr(geometry());
} }
void DockView::statusChanged(Plasma::Types::ItemStatus status) void DockView::statusChanged(Plasma::Types::ItemStatus status)

@ -45,13 +45,13 @@ VisibilityManagerPrivate::VisibilityManagerPrivate(PlasmaQuick::ContainmentView
connect(&timerCheckWindows, &QTimer::timeout, this, &VisibilityManagerPrivate::checkAllWindows); connect(&timerCheckWindows, &QTimer::timeout, this, &VisibilityManagerPrivate::checkAllWindows);
connect(&timerShow, &QTimer::timeout, this, [this]() { connect(&timerShow, &QTimer::timeout, this, [this]() {
if (isHidden) { if (isHidden) {
qDebug() << "must be shown"; // qDebug() << "must be shown";
emit this->q->mustBeShown(); emit this->q->mustBeShown();
} }
}); });
connect(&timerHide, &QTimer::timeout, this, [this]() { connect(&timerHide, &QTimer::timeout, this, [this]() {
if (!blockHiding && !isHidden && !dragEnter) { if (!blockHiding && !isHidden && !dragEnter) {
qDebug() << "must be hide"; // qDebug() << "must be hide";
emit this->q->mustBeHide(); emit this->q->mustBeHide();
} }
}); });
@ -181,7 +181,7 @@ void VisibilityManagerPrivate::setBlockHiding(bool blockHiding)
return; return;
this->blockHiding = blockHiding; this->blockHiding = blockHiding;
qDebug() << "blockHiding:" << blockHiding; // qDebug() << "blockHiding:" << blockHiding;
if (this->blockHiding) { if (this->blockHiding) {
timerHide.stop(); timerHide.stop();

@ -564,7 +564,7 @@ DragDrop.DropArea {
return; return;
} }
console.debug("user configuring", plasmoid.userConfiguring) // console.debug("user configuring", plasmoid.userConfiguring)
if (plasmoid.userConfiguring) { if (plasmoid.userConfiguring) {
dock.visibility.blockHiding = true; dock.visibility.blockHiding = true;

Loading…
Cancel
Save