File tree Expand file tree Collapse file tree 3 files changed +1
-5
lines changed
rio-backend/src/performer Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -288,7 +288,6 @@ impl<T: EventListener + Clone + std::marker::Send + 'static> ContextManager<T> {
288
288
pty,
289
289
event_proxy. clone ( ) ,
290
290
window_id,
291
- route_id,
292
291
) ?;
293
292
let channel = machine. channel ( ) ;
294
293
let io_thread = if config. spawn_performer {
Original file line number Diff line number Diff line change @@ -858,7 +858,7 @@ impl Renderer {
858
858
Some ( snapshot) => snapshot,
859
859
None if force_full_damage => {
860
860
// Force full damage case - create a fresh snapshot
861
- let terminal = context. terminal . lock ( ) ;
861
+ let mut terminal = context. terminal . lock ( ) ;
862
862
let snapshot = TerminalSnapshot {
863
863
colors : terminal. colors ,
864
864
display_offset : terminal. display_offset ( ) ,
Original file line number Diff line number Diff line change @@ -68,7 +68,6 @@ pub struct Machine<T: teletypewriter::EventedPty, U: EventListener> {
68
68
terminal : Arc < FairMutex < Crosswords < U > > > ,
69
69
event_proxy : U ,
70
70
window_id : WindowId ,
71
- route_id : usize ,
72
71
}
73
72
74
73
#[ derive( Default ) ]
@@ -147,7 +146,6 @@ where
147
146
pty : T ,
148
147
event_proxy : U ,
149
148
window_id : WindowId ,
150
- route_id : usize ,
151
149
) -> Result < Machine < T , U > , Box < dyn std:: error:: Error > > {
152
150
let ( sender, receiver) = channel:: channel ( ) ;
153
151
let poll = corcovado:: Poll :: new ( ) ?;
@@ -160,7 +158,6 @@ where
160
158
terminal,
161
159
event_proxy,
162
160
window_id,
163
- route_id,
164
161
} )
165
162
}
166
163
You can’t perform that action at this time.
0 commit comments