Skip to content

Commit

Permalink
update markers
Browse files Browse the repository at this point in the history
  • Loading branch information
raphamorim committed Dec 22, 2024
1 parent 664863f commit edb0fb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontends/rioterm/src/context/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ pub struct ContextManager<T: EventListener> {
pub titles: ContextManagerTitles,
}

pub fn create_mock_context<T: rio_backend::event::EventListener>(
pub fn create_mock_context<T: rio_backend::event::EventListener + Clone + std::marker::Send + 'static>(
event_proxy: T,
window_id: WindowId,
route_id: usize,
Expand All @@ -191,7 +191,7 @@ pub fn create_mock_context<T: rio_backend::event::EventListener>(
let terminal = Crosswords::new(
dimension,
CursorShape::Block,
event_proxy,
event_proxy.clone(),
window_id,
route_id,
);
Expand Down

0 comments on commit edb0fb5

Please sign in to comment.