GUI special indexing menu: remove negation

This commit is contained in:
Jean-Francois Dockes 2019-03-14 10:55:06 +01:00
parent 9f30277810
commit 6636d67f5b
2 changed files with 4 additions and 4 deletions

View File

@ -190,7 +190,7 @@ void RclMain::periodic100()
if ((prevstate == IXST_RUNNINGMINE || prevstate == IXST_RUNNINGNOTMINE)
&& m_indexerState == IXST_NOTRUNNING) {
showTrayMessage("Indexing done");
showTrayMessage(tr("Indexing done"));
}
// Possibly cleanup the dead viewers
@ -413,7 +413,7 @@ void SpecIdxW::onBrowsePB_clicked()
bool SpecIdxW::noRetryFailed()
{
return noRetryFailedCB->isChecked();
return !retryFailedCB->isChecked();
}
bool SpecIdxW::eraseFirst()

View File

@ -20,9 +20,9 @@
<item>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QCheckBox" name="noRetryFailedCB">
<widget class="QCheckBox" name="retryFailedCB">
<property name="text">
<string>Do not retry previously failed files.</string>
<string>Retry previously failed files.</string>
</property>
</widget>
</item>