Skip to content

Commit d533ca8

Browse files
authored
Fix blockly dropdown scroll and media not being copied properly (#11119)
* add scroll to blockly dropdown content * fix piping of blockly media files
1 parent 86d8e6d commit d533ca8

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ const buildSVGIcons = () => {
544544
}
545545

546546
const copyBlocklyMedia = () =>
547-
gulp.src("node_modules/blockly/media/*")
547+
gulp.src("node_modules/blockly/media/*", { encoding: false })
548548
.pipe(gulp.dest("webapp/public/blockly/media"))
549549

550550

theme/fieldeditors.less

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
@blocklyDarkTextColor: #575E75;
1212
@fieldNoteSelectedColor: yellowgreen;
1313

14+
.blocklyDropDownContent {
15+
overflow-y: auto;
16+
}
17+
1418
////// Note Editor Field ////////
1519
.blocklyDropDownContent {
1620
.blocklyPianoDiv {

0 commit comments

Comments
 (0)