Skip to content

Commit

Permalink
Resetting an accidentally changed file
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkae committed Oct 4, 2023
1 parent cd4df9d commit 070c93e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/server/input/event_filter_chain_dispatcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ bool mi::EventFilterChainDispatcher::handle(MirEvent const& event)
std::lock_guard lg(filter_guard);

auto it = filters.begin();
int idx = 0;
while (it != filters.end())
{
auto filter = (*it).lock();
Expand All @@ -43,7 +42,6 @@ bool mi::EventFilterChainDispatcher::handle(MirEvent const& event)
}
if (filter->handle(event)) return true;
++it;
idx++;
}
return false;
}
Expand Down

0 comments on commit 070c93e

Please sign in to comment.