From: Michal MalĂ˝ Date: Wed, 8 Jul 2015 15:50:26 +0000 (+0200) Subject: Query effect status by its index instead of setting the effect status X-Git-Tag: 0.4a~1 X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=d02ac1b013892b3d6813a6bdc3fc5f4822045a5f;p=FFBChecker.git Query effect status by its index instead of setting the effect status caption directly. --- 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()