Skip to content

Commit 36c46d8

Browse files
committed
fix: Fixed bug with new dependencies
1 parent 8b63453 commit 36c46d8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ async fn main() -> eframe::Result<()> {
1414
eframe::run_native(
1515
"Showtime Desktop by Mathis Burger",
1616
native_options,
17-
Box::new(|_cc| Box::new(MainWrapper::new())),
17+
Box::new(|_cc| Ok(Box::new(MainWrapper::new()))),
1818
)
1919
}

0 commit comments

Comments
 (0)