Removed debug messages.

This commit is contained in:
Christoph Holzheuer
2026-01-12 09:01:06 +01:00
parent 9b1a1233f9
commit c0ce6a81e3
6 changed files with 0 additions and 20 deletions

View File

@@ -42,12 +42,6 @@ void BCDelightPMWidget::loadWidgetsFromResources()
// Iteriert zum nächsten Eintrag und gibt den kompletten virtuellen Pfad zurück
// z.B. ":/icons/ball_red.png"
QString fullPath = it.next();
// Optional: Nur den Dateinamen holen (z.B. "ball_red.png")
// QString fileName = it.fileName();
qDebug() << "Gefundenes Icon:" << fullPath;
// Eine Zufallsfarbe für den Button-Hintergrund generieren
QStringList colors = {"#ff5555", "#50fa7b", "#8be9fd", "#ffb86c"};
QString randomColor = colors.at(QRandomGenerator::global()->bounded(colors.size()));
@@ -56,7 +50,6 @@ void BCDelightPMWidget::loadWidgetsFromResources()
createFlyingWidget(fullPath, randomColor);
}
}
void BCDelightPMWidget::createFlyingWidget(const QString& iconPath, const QString &color)