Press F12 to open developer tools. Press the "Console" tab and paste this code in:
var opt = document.createElement("option");
opt.value = parseFloat(3/4);
opt.text = "1/"+String(opt.value*4);
document.getElementById('grid_select').add(opt)
Then, in the bottom left, click where it says "1/4" in a dropdown list and select "1/3" at the bottom.
(I totally didn't use Frank's code: https://onlinesequencer.net/forum/showth...p?tid=2667)
var opt = document.createElement("option");
opt.value = parseFloat(3/4);
opt.text = "1/"+String(opt.value*4);
document.getElementById('grid_select').add(opt)
Then, in the bottom left, click where it says "1/4" in a dropdown list and select "1/3" at the bottom.
(I totally didn't use Frank's code: https://onlinesequencer.net/forum/showth...p?tid=2667)