1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-24 07:46:59 +03:00

fix 'already borrowed' panic with large pastes

This commit is contained in:
Wez Furlong 2019-06-02 13:00:30 -07:00
parent 3f16979067
commit 74bbf01014

View File

@ -327,8 +327,12 @@ impl GuiEventLoop {
} }
} }
fn pop_gui_thread_send(&self) -> Option<SpawnFunc> {
self.gui_thread_sends.borrow_mut().pop_front()
}
fn process_gui_exec(&self) -> Result<(), Error> { fn process_gui_exec(&self) -> Result<(), Error> {
while let Some(func) = self.gui_thread_sends.borrow_mut().pop_front() { while let Some(func) = self.pop_gui_thread_send() {
func(); func();
} }