actions: ApplyFilter: apply filter at the end (fix for #3624)

master
Andrzej Rybczak 13 years ago
parent 946f90efdb
commit c79997c08b
  1. 5
      src/actions.cpp

@ -1781,7 +1781,12 @@ void ApplyFilter::run()
Statusbar::msg("Filtering disabled");
}
else
{
// apply filter here so even if old one wasn't modified
// (and callback wasn't invoked), it still gets applied.
f->applyFilter(filter);
Statusbar::msg("Using filter \"%s\"", filter.c_str());
}
if (myScreen == myPlaylist)
{

Loading…
Cancel
Save