Skip to content
Merged
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
3 changes: 0 additions & 3 deletions js/activity.js
Original file line number Diff line number Diff line change
Expand Up @@ -2995,7 +2995,7 @@
// First, check if the pitch slider is open
if (window.widgetWindows.isOpen("slider") === true) {
// If the event is an arrow key, let the PitchSlider handle it
if (event.keyCode === 37 || event.keyCode === 38 ||

Check warning on line 2998 in js/activity.js

View workflow job for this annotation

GitHub Actions / Lint updated JavaScript files with ESLint

Trailing spaces not allowed
event.keyCode === 39 || event.keyCode === 40) {
// Simply prevent default behavior here
// The actual pitch slider handling is done in the PitchSlider class
Expand Down Expand Up @@ -3102,9 +3102,6 @@
this.textMsg("Alt-C " + _("Copy"));
this.blocks.prepareStackForCopy();
break;
case 68: // 'D'
this.palettes.dict["myblocks"].promptMacrosDelete();
break;
case 69: // 'E'
this.textMsg("Alt-E " + _("Erase"));
this._allClear(false);
Expand Down
Loading