Removed status message which overwrites message from the core on CSV import.

This commit is contained in:
2026-03-12 10:38:31 +01:00
parent 7fa8612313
commit c7b0e4f3e5

View File

@ -40,7 +40,6 @@ MainWindow::MainWindow(QWidget* parent)
transform.rotate(180);
QPixmap rotated = pixmap.transformed(transform);
QIcon appIcon = QIcon(rotated);
qWarning() << "appIcon.availableSizes():" << appIcon.availableSizes();
setWindowIcon(QIcon(rotated));
#else
setWindowIcon(QIcon(iconString));
@ -252,7 +251,6 @@ void MainWindow::importCSV() {
tr("CSV Files (*.csv)"));
if (QFileInfo::exists(csvFilePath)) {
m_core->importCSVFile(csvFilePath);
showStatusMessage(tr("Imported CSV file."));
} else {
qWarning() << "Selected CSV file path doesn't exist. Doing nothing...";
showStatusMessage(tr("Could't find CSV file!"));