From d02ac1b013892b3d6813a6bdc3fc5f4822045a5f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Mal=C3=BD?= Date: Wed, 8 Jul 2015 17:50:26 +0200 Subject: [PATCH] Query effect status by its index instead of setting the effect status caption directly. --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index fa308a9..36a221a 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -192,7 +192,7 @@ void MainWindow::onRemoveEffectClicked() if (!m_activeDevice->removeAndEraseEffect(effectIdx)) showErrorMsgBox(ErrorMessages::CANT_REMOVE_EFFECT); else - setEffectStatusText(FFBEffect::FFBEffectStatus::NOT_LOADED); + setEffectStatusText(m_activeDevice->effectStatusByIdx(effectIdx)); } void MainWindow::onStartEffectClicked() -- 2.43.5