Merge branch 'web' into merge-master-to-web

This commit is contained in:
Ryan Goldstein 2019-09-24 19:41:59 -04:00
commit 86bafdc104
10 changed files with 61 additions and 19 deletions

View file

@ -2,7 +2,7 @@ use super::runner;
use crate::event::Event;
use crate::event_loop::EventLoopClosed;
pub struct Proxy<T: 'static>{
pub struct Proxy<T: 'static> {
runner: runner::Shared<T>,
}
@ -20,7 +20,7 @@ impl<T: 'static> Proxy<T> {
impl<T: 'static> Clone for Proxy<T> {
fn clone(&self) -> Self {
Proxy {
runner: self.runner.clone()
runner: self.runner.clone(),
}
}
}