Skip to content

Commit 7c40dde

Browse files
committed
Do not blink selected channel on continuation event
1 parent 063338b commit 7c40dde

File tree

2 files changed

+1
-30
lines changed

2 files changed

+1
-30
lines changed

debug.loh

Lines changed: 0 additions & 29 deletions
This file was deleted.

src/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -924,7 +924,7 @@ impl App {
924924
}
925925

926926
fn focus_current_channel(&mut self) {
927-
if let Some(c) = self.channels.channel_by_offset(self.session_view.eval_state.channel) { self.focus_channel(c.name.clone(), true) }
927+
if let Some(c) = self.channels.channel_by_offset(self.session_view.eval_state.channel) { self.focus_channel(c.name.clone(), false) }
928928
}
929929

930930
fn focus_channel(&mut self, channel: String, blink: bool) {

0 commit comments

Comments
 (0)