Skip to content

Commit

Permalink
HoverWidget: eliminated logging category from debug message
Browse files Browse the repository at this point in the history
Signed-off-by: Andrei-Fabian-Pop <[email protected]>
  • Loading branch information
Andrei-Fabian-Pop authored and adisuciu committed Nov 20, 2023
1 parent 84291b7 commit 2a92594
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/gui/hoverwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@
#include "qevent.h"

#include <QDebug>
#include <QLoggingCategory>

using namespace scopy;
Q_LOGGING_CATEGORY(CAT_HOVERWIDGET, "HoverWidget")

HoverWidget::HoverWidget(QWidget *content, QWidget *anchor, QWidget *parent)
: QWidget(parent)
Expand Down Expand Up @@ -316,7 +314,7 @@ void HoverWidget::moveToAnchor()
break;
}

qDebug(CAT_HOVERWIDGET) << "moveAnchor"
qDebug() << "moveAnchor"
<< "mapped" << mappedPoint << "contentPosition" << contentPosition << "anchorPosition"
<< anchorPosition << "offset" << m_anchorOffset;
move(mappedPoint + contentPosition + anchorPosition + m_anchorOffset);
Expand Down

0 comments on commit 2a92594

Please sign in to comment.