Skip to content
Snippets Groups Projects
Commit 34e49016 authored by ar.graf's avatar ar.graf
Browse files

fixed issue with last id in list-dialogue showseleced

parent 3146b97c
No related branches found
No related tags found
1 merge request!301fixed issue with last id in list-dialogue showseleced
......@@ -1118,6 +1118,21 @@ void Control::on_trackShowOnlyListButton_clicked()
}
/// ToDo: lists
}
// Interval detection requires an unchecked checkbox following up the checked ones.
// If the checkbox for the last ID is checked, no unchecked checkbox follows.
// This edgecase is identified by 'first' not being reset to -1
if(first != -1)
{
last = static_cast<int>(mMainWindow->getPersonStorage().nbPersons());
if(first == last)
{
list.append(QString::number(first));
}
else
{
list.append(QString("%1-%2").arg(first).arg(last));
}
}
mUi->trackShowOnlyNrList->setText(list.join(","));
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment