Skip to content

Commit

Permalink
fix cover
Browse files Browse the repository at this point in the history
  • Loading branch information
2278535805 committed Feb 7, 2025
1 parent 358ad8f commit e8ab0d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prpr/src/core/note.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ impl Note {
};

if !config.draw_below
&& ((res.time - FADEOUT_TIME >= self.time) || (self.fake && res.time >= self.time) || (self.time > res.time && cover_base <= -1e-5))
&& ((res.time - FADEOUT_TIME >= self.time && !matches!(self.kind, NoteKind::Hold { .. })) || (self.time > res.time && cover_base <= -0.001))
{
return;
}
Expand Down

0 comments on commit e8ab0d8

Please sign in to comment.