mirror of
https://github.com/tnodir/fort
synced 2024-11-15 06:55:54 +00:00
UI: AppGroups: Fix tab moving in Service mode
This commit is contained in:
parent
613728369b
commit
d89b057301
@ -215,7 +215,7 @@ void FirewallConf::moveAppGroup(int from, int to)
|
||||
{
|
||||
const int lo = qMin(from, to);
|
||||
const int hi = qMax(from, to);
|
||||
for (int i = lo; i >= hi; --i) {
|
||||
for (int i = lo; i <= hi; ++i) {
|
||||
AppGroup *appGroup = m_appGroups.at(i);
|
||||
appGroup->setEdited(true);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user