We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a252e2 commit 6239f98Copy full SHA for 6239f98
packages/core/src/extensions/SideMenu/SideMenuPlugin.ts
@@ -491,7 +491,11 @@ export class SideMenuProsemirrorPlugin<
491
* attached to the same block regardless of which block is hovered by the
492
* mouse cursor.
493
*/
494
- freezeMenu = () => (this.view!.menuFrozen = true);
+ freezeMenu = () => {
495
+ this.view!.menuFrozen = true;
496
+ this.view!.state!.show = true;
497
+ this.view!.emitUpdate(this.view!.state!);
498
+ };
499
/**
500
* Unfreezes the side menu. When frozen, the side menu will stay
501
0 commit comments