Skip to content

Commit

Permalink
fix drag & drop color + default TW extra keys
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyGamer13 authored Dec 13, 2023
1 parent e69ef01 commit fd64b02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/addons/addons/drag-drop/userscript.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default async function ({ addon, console }) {
// is in CSS.
},
{
backgroundColor: "hsla(0, 100%, 77%, 1)",
backgroundColor: "#60E1FF",
},
],
{
Expand Down
5 changes: 3 additions & 2 deletions src/addons/addons/editor-extra-keys/_manifest_entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,15 @@ const manifest = {
"name": "Show TurboWarp keys",
"id": "twKeys",
"type": "boolean",
"default": false
"default": true
}
],
"userscripts": [
{
"url": "userscript.js"
}
],
"dynamicDisable": true
"dynamicDisable": true,
"enabledByDefault": true
};
export default manifest;

0 comments on commit fd64b02

Please sign in to comment.