mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Filter: correctly send changed signals in list mode
The DiveTripModelList forgot to collect the changed dives when resetting the filter. Fix that. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
f5d480711a
commit
37b24857ed
1 changed files with 1 additions and 1 deletions
|
@ -1347,7 +1347,7 @@ void DiveTripModelList::filterReset()
|
|||
|
||||
for (dive *d: items) {
|
||||
bool shown = filter->showDive(d);
|
||||
filter_dive(d, shown);
|
||||
changed.push_back(filter_dive(d, shown));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue