Revert "fix hexagon_launcher crashing (#8)"

This reverts commit 62b0fe8240.
This fix only stopped hexagon_launcher from exiting properly upon
receiving a fatal error
This commit is contained in:
Schmarni
2025-08-30 18:09:23 +02:00
parent 62b0fe8240
commit e60463081e
3 changed files with 4 additions and 8 deletions

View File

@@ -34,12 +34,10 @@ const ACTIVATION_DISTANCE: f32 = 0.05;
const DEFAULT_HEX_COLOR: Rgba<f32, LinearRgb> = rgba_linear!(0.211, 0.937, 0.588, 1.0);
const BTN_SELECTED_COLOR: Rgba<f32, LinearRgb> = rgba_linear!(0.0, 1.0, 0.0, 1.0);
const BTN_COLOR: Rgba<f32, LinearRgb> = rgba_linear!(1.0, 1.0, 0.0, 1.0);
#[tokio::main(flavor = "current_thread")]
async fn main() -> Result<()> {
unsafe {
libc::signal(libc::SIGPIPE, libc::SIG_DFL);
}
color_eyre::install().unwrap();
color_eyre::install().unwrap();
tracing_subscriber::fmt()
.with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
.pretty()