From 23ea8c1c5502c53a8406f4e3406a85de1fcd2cd7 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Sat, 24 Feb 2024 23:41:20 +1100 Subject: [PATCH] chore: remove draggable tabs toggle (now enabled by default in vanilla) --- src/core/electron.cjs | 6 +----- src/core/mod.json | 8 -------- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/src/core/electron.cjs b/src/core/electron.cjs index 6ae65c4..601c341 100644 --- a/src/core/electron.cjs +++ b/src/core/electron.cjs @@ -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 ??= {}), { diff --git a/src/core/mod.json b/src/core/mod.json index 9961a4a..9d26a76 100644 --- a/src/core/mod.json +++ b/src/core/mod.json @@ -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",