mirror of
https://github.com/KDE/latte-dock.git
synced 2025-03-12 12:58:16 +03:00
disable more debug messages
This commit is contained in:
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;
|
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…
x
Reference in New Issue
Block a user