/** * notion-enhancer: integrated titlebar * (c) 2021 dragonwocky (https://dragonwocky.me/) * (https://notion-enhancer.github.io/) under the MIT license */ 'use strict'; module.exports = async function (api, db, __exports, __eval) { __eval(` const notionRectFromFocusedWindow = getRectFromFocusedWindow; getRectFromFocusedWindow = (windowState) => { const rect = notionRectFromFocusedWindow(windowState); rect.frame = false; return rect; }; `); };