Skip to content

Commit

Permalink
Adjust drummer size
Browse files Browse the repository at this point in the history
  • Loading branch information
bigfoodK committed Jan 27, 2024
1 parent fd7030a commit 5b09219
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hololive-beat/hololive-beat/src/app/music_play_page/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ impl Component for Loaded<'_> {

const NOTE_PLOTTER_HEIGHT: Px = px(256.0);
const TIMING_ZERO_X: Px = px(192.0);
const DRUMMER_WIDTH: Px = px(384.0);
const DRUMMER_WIDTH: Px = px(448.0);
let perfect_range: Duration = Duration::from_millis(64);
let good_range: Duration = 256.0.ms();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ impl Component for Decoration {

let drummer_wh = {
let width = wh.width * 0.6;
Wh::new(width, width * 0.5)
Wh::new(width, width * 0.7)
};

ctx.component(image(ImageParam {
Expand Down

0 comments on commit 5b09219

Please sign in to comment.