From 675207b0a6cc92f97bace27cac017a3d83179793 Mon Sep 17 00:00:00 2001 From: edisionnano Date: Wed, 29 May 2024 05:17:33 +0300 Subject: [PATCH] Nvme is always solid --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index cac838d..89e3b81 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -163,7 +163,7 @@ void MainWindow::populateWindow(const QJsonObject &localObj, const QString &heal QString rotationRate; if (rotationRateInt > 0) { rotationRate = QString::number(rotationRateInt); - } else if (rotationRateInt == 0) { + } else if (rotationRateInt == 0 || isNvme) { rotationRate = "---- (SSD)"; } else { rotationRate = "----";