GUI special indexing menu: remove negation
This commit is contained in:
parent
9f30277810
commit
6636d67f5b
@ -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()
|
||||
|
||||
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user