Allow to select multiple entries in "banned IP" dialog

This commit is contained in:
Chocobo1 2019-10-11 21:07:18 +08:00
parent c7f092b95f
commit 5e671a4b0b
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
2 changed files with 9 additions and 2 deletions

View file

@ -107,8 +107,12 @@ void BanListOptionsDialog::on_buttonBanIP_clicked()
void BanListOptionsDialog::on_buttonDeleteIP_clicked()
{
const QModelIndexList selection = m_ui->bannedIPList->selectionModel()->selectedIndexes();
for (const auto &i : selection)
QModelIndexList selection = m_ui->bannedIPList->selectionModel()->selectedIndexes();
std::sort(selection.begin(), selection.end(), [](const QModelIndex &left, const QModelIndex &right)
{
return (left.row() > right.row());
});
for (const QModelIndex &i : selection)
m_sortFilter->removeRow(i.row());
m_modified = true;

View file

@ -49,6 +49,9 @@
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="selectionMode">
<enum>QAbstractItemView::ExtendedSelection</enum>
</property>
<property name="rootIsDecorated">
<bool>false</bool>
</property>