From 9e0b8b4197b490e36928e8e27e12685b7c06a9c2 Mon Sep 17 00:00:00 2001 From: Carl Philipp Klemm Date: Wed, 25 Mar 2026 17:47:48 +0100 Subject: [PATCH] Fix unitalized bpm for new songs --- src/SongItem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SongItem.cpp b/src/SongItem.cpp index 68eef23..4b1686e 100644 --- a/src/SongItem.cpp +++ b/src/SongItem.cpp @@ -1,7 +1,7 @@ #include "SongItem.h" SongItem::SongItem(const QString &caption, const QString &lyrics) - : caption(caption), lyrics(lyrics), cotCaption(true) + : caption(caption), lyrics(lyrics), cotCaption(true), bpm(0) { uniqueId = QRandomGenerator::global()->generate64(); }