Removed debug messages.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user