Update comet revision 🎉
This commit is contained in:
parent
4cef837e45
commit
834a4943cb
2 changed files with 5 additions and 3 deletions
|
|
@ -3,7 +3,7 @@ use crate::runtime::task::{self, Task};
|
|||
use std::process;
|
||||
|
||||
pub const COMPATIBLE_REVISION: &str =
|
||||
"20f9c9a897fecac5dce0977bbb5639fdce1f54b9";
|
||||
"3f75f3240edc1719df584810337bc7df010327d8";
|
||||
|
||||
pub fn launch() -> Task<launch::Result> {
|
||||
task::try_blocking(|mut sender| {
|
||||
|
|
@ -82,7 +82,9 @@ pub fn install() -> Task<install::Result> {
|
|||
}
|
||||
}
|
||||
|
||||
let _ = sender.try_send(install::Event::Logged(log.clone()));
|
||||
let _ = sender
|
||||
.try_send(install::Event::Logged(log.trim_end().to_owned()));
|
||||
|
||||
log.clear();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -344,7 +344,7 @@ where
|
|||
.background(Color::BLACK.scale_alpha(0.8))
|
||||
});
|
||||
|
||||
Some(themer(theme(), Element::from(setup).map(Event::Message)))
|
||||
Some(themer(theme(), opaque(setup).map(Event::Message)))
|
||||
} else {
|
||||
None
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue