Skip to content

Commit

Permalink
Update visuals.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
rustbasic authored Mar 2, 2024
1 parent f534359 commit 86e0910
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/egui/src/text_selection/visuals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ pub fn paint_cursor(
if blink {
// Make i_time_piece between 0 to 9.
let i_time_piece = ((i_time % 1.0) * 10.0).trunc() as i64;
if i_time_piece >= 5 && i_time_piece <= 6 {
if i_time_piece >= 5 && i_time_piece <= 8 {
return false;
}
}
Expand Down

0 comments on commit 86e0910

Please sign in to comment.