This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ’„ Put BPM before Loaded message in MidiSynchroniser

+8 -7
+8 -7
src/video/video.rs
··· 110 110 let pb = pb.unwrap(); 111 111 112 112 pb.finish(); 113 + 114 + if let Some(bpm) = syncdata.bpm { 115 + pb.log( 116 + "BPM", 117 + &format!("set to {bpm} from {}", format_filepath(&file_path)), 118 + ); 119 + } 120 + 113 121 pb.log( 114 122 "Loaded", 115 123 &format!( ··· 130 138 ])), 131 139 ), 132 140 ); 133 - 134 - if let Some(bpm) = syncdata.bpm { 135 - pb.log( 136 - "BPM", 137 - &format!("set to {bpm} from {}", format_filepath(&file_path)), 138 - ); 139 - } 140 141 141 142 return Self { 142 143 syncdata: self.syncdata.union(syncdata),