Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -2145,3 +2145,14 @@ function stopPendulumMotion(reset=true){
if(!metroRunning) requestAnimationFrame(setNeedleLeft);
};
})();

/* EasyTune v55 — BPM display button opens Tempo modal */
(function(){
var prevInit = initMetronome;
initMetronome = function(){
prevInit();
document.querySelector('#metroCleanBpmButton')?.addEventListener('click', function(){
openMetroSettings('metroTempoModal');
});
};
})();
11 changes: 11 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -4690,3 +4690,14 @@ label[for="chordSearch"]{
.metro-clean-visual.accent-hit::before{
animation:metroAccentFlash .14s ease-out 1 !important;
}

/* EasyTune v55 — fix beats container full width + BPM button cursor */
/* .metro-clean-beats has no explicit width; parent grid's justify-items:center
(set in v39) causes it to shrink-wrap to ~132px. Force full width. */
.metro-clean-beats {
width: 100% !important;
}
/* BPM display button now opens Tempo modal — restore pointer cursor */
#metroCleanBpmButton {
cursor: pointer !important;
}
Loading