1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 13:21:38 +03:00

remove stray dbg!

This commit is contained in:
Wez Furlong 2022-01-10 18:39:59 -07:00
parent 1fd53d4a5d
commit e40042e605

View File

@ -92,7 +92,7 @@ where
{
let per_pane = handler.per_pane(pane_id);
let mut per_pane = per_pane.lock().unwrap();
per_pane.notifications.push(dbg!(alert));
per_pane.notifications.push(alert);
}
handler.schedule_pane_push(pane_id);
}