Skip to content

Commit d6665c7

Browse files
committed
Update scrolling preference to reflect the different edit modes
1 parent 966b355 commit d6665c7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/draw_window_preferences/draw_window_preferences.gml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@ if (selected_tab = 0) {
166166
if (draw_radiobox(x1 + 40, y1 + 90, mousewheel = 0, "Use mouse wheel to scroll through the song", "Use the mouse wheel to scroll through\nthe song horizontally or vertically.")) mousewheel = 0
167167
if (draw_radiobox(x1 + 40, y1 + 110, mousewheel = 1, "Use mouse wheel to change instrument", "Use the mouse wheel to toggle between\nthe available instruments.")) mousewheel = 1
168168
if (draw_radiobox(x1 + 40, y1 + 130, mousewheel = 2, "Use mouse wheel to change key", "Use the mouse wheel to toggle\nbetween the keys on the piano.")) mousewheel = 2
169-
if (draw_checkbox(x1 + 40, y1 + 158, changepitch, "Change pitch when scrolling over notes", "Whether scrolling when hovering over a\nnote should change its pitch.")) changepitch=!changepitch
169+
if (draw_checkbox(x1 + 40, y1 + 158, changepitch, "Change note properties when scrolling over notes", "Whether scrolling when hovering over a note should change its key,\nvelocity, panning or pitch, according to the currently selected edit mode.")) changepitch=!changepitch
170+
//draw_text(x1 + 40, y1 + 178, "Tip: Hold Shift while scrolling over a note to change a whole octave,\nor fine-tune its velocity, panning or pitch.")
170171
draw_areaheader(x1 + 22, y1 + 220, 456, 105, "Piano")
171172
if (draw_checkbox(x1 + 40, y1 + 236, select_lastpressed, "Set selected key to pressed one", "If the selected key should be set\nto the one pressed using the keyboard.")) select_lastpressed=!select_lastpressed
172173
draw_text(x1 + 40, y1 + 270, "Right - click on keys to change their shortcuts.")

0 commit comments

Comments
 (0)