fix(panel): dont move help button unless panel is pinned

This commit is contained in:
dragonwocky 2024-01-24 02:27:53 +11:00
parent 653d7d9bc8
commit 26c9638013
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8

View File

@ -295,7 +295,7 @@ function Panel({
if (!$notionHelp) return;
width ??= await getWidth();
if (isNaN(width)) width = minWidth;
if (isClosed()) width = 0;
if (!isPinned()) width = 0;
const to = `${26 + width}px`,
from = $notionHelp.style.getPropertyValue("right");
if (from === to) return;