Skip to content

Commit 9994683

Browse files
committed
fix speed issues in Code Editor Tabbing
1 parent 469ab7e commit 9994683

File tree

2 files changed

+155
-109
lines changed

2 files changed

+155
-109
lines changed

src/addons/addons/multi-tab-code/_manifest_entry.js

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
const manifest = {
33
"editorOnly": true,
44
"name": "Code Editor Tabbing",
5-
"description": "Adds tabs to the code editor, allowing you to devide many scripts from inside one sprite in to seperate parts.",
5+
"description": "Adds tabs to the code editor, allowing you to divide many scripts from inside one sprite in to seperate parts.",
66
"info": [],
77
"credits": [
88
{
@@ -26,11 +26,18 @@ const manifest = {
2626
"type": "boolean",
2727
"id": "shouldDelete",
2828
"name": "Merge tabs on delete",
29-
"default": "true",
29+
"default": true,
3030
"description": "If we should keep blocks from deleted tabs, moving them into the new selected tab, or if we should delete blocks inside a deleted tab."
31+
},
32+
{
33+
"type": "boolean",
34+
"id": "moveOnDrag",
35+
"name": "Move blocks into tabs",
36+
"default": false,
37+
"description": "If, when blocks are dragged over a tab, we should copy blocks into the tab or move the selected blocks into the tab."
3138
}
3239
],
33-
"tags": ["new"],
40+
"tags": [],
3441
"enabledByDefault": false
3542
};
3643
export default manifest;

0 commit comments

Comments
 (0)