This commit is contained in:
Martin Kavík 2024-06-07 01:44:09 +02:00
parent 29560ae616
commit 26565dd684
7 changed files with 32 additions and 10 deletions

View file

@ -33,7 +33,11 @@ pub async fn get_time_table() -> wellen::TimeTable {
platform::get_time_table().await
}
pub async fn load_signal_and_get_timeline(signal_ref: wellen::SignalRef, screen_width: u32, block_height: u32) -> shared::Timeline {
pub async fn load_signal_and_get_timeline(
signal_ref: wellen::SignalRef,
screen_width: u32,
block_height: u32,
) -> shared::Timeline {
platform::load_signal_and_get_timeline(signal_ref, screen_width, block_height).await
}