Skip to content

Commit

Permalink
refactor(cuecontrol): comment out debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Swiftb0y committed May 15, 2023
1 parent 42fc91c commit 2851f5b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/engine/controls/cuecontrol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2640,7 +2640,7 @@ void HotcueControl::slotHotcueColorChangeRequest(double color) {
qWarning() << "slotHotcueColorChanged got invalid value:" << color;
return;
}
qDebug() << "HotcueControl::slotHotcueColorChangeRequest" << color;
// qDebug() << "HotcueControl::slotHotcueColorChangeRequest" << color;
m_hotcueColor->setAndConfirm(color);
}

Expand Down Expand Up @@ -2671,7 +2671,7 @@ void HotcueControl::setCue(const CuePointer& pCue) {
Cue::StartAndEndPositions pos = pCue->getStartAndEndPosition();
setPosition(pos.startPosition);
setEndPosition(pos.endPosition);
qDebug() << "HotcueControl::setCue";
// qDebug() << "HotcueControl::setCue";
setColor(pCue->getColor());
setStatus((pCue->getType() == mixxx::CueType::Invalid)
? HotcueControl::Status::Empty
Expand All @@ -2686,7 +2686,7 @@ mixxx::RgbColor::optional_t HotcueControl::getColor() const {
}

void HotcueControl::setColor(mixxx::RgbColor::optional_t newColor) {
qDebug() << "HotcueControl::::setColor()" << newColor;
// qDebug() << "HotcueControl::setColor()" << newColor;
if (newColor) {
m_hotcueColor->set(*newColor);
}
Expand Down

0 comments on commit 2851f5b

Please sign in to comment.