chore: remove draggable tabs toggle (now enabled by default in vanilla)

This commit is contained in:
dragonwocky 2024-02-24 23:41:20 +11:00
parent b910f82acf
commit 23ea8c1c55
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8
2 changed files with 1 additions and 13 deletions

View File

@ -17,11 +17,7 @@ const getPreference = (key) => {
module.exports = async ({}, db) => {
const toggleWindowHotkey = await db.get("toggleWindowHotkey"),
developerMode = await db.get("developerMode"),
draggableTabs = await db.get("draggableTabs");
// experimental: enable tab reordering from notion's hidden preferences
setPreference("isDraggableTabsEnabled", draggableTabs);
developerMode = await db.get("developerMode");
// enable developer mode, access extra debug tools
Object.assign((globalThis.__notionConfig ??= {}), {

View File

@ -56,14 +56,6 @@
"description": "Pops the side panel out to preview its content when hovering near the right edge of the window, in the same way that Notion's left-hand sidebar will slide out on hover. Disable this if you prefer to view the panel only by pinning it.",
"value": true
},
{ "type": "heading", "label": "Experimental" },
{
"type": "toggle",
"key": "draggableTabs",
"description": "Enables reordering tabs within the Notion app via drag and drop.",
"platforms": ["linux", "win32", "darwin"],
"value": false
},
{
"type": "heading",
"label": "Advanced",