Skip to content

Commit

Permalink
fix: disable shortcut "h" to shown/hidden dat.gui css debug menu (#1226)
Browse files Browse the repository at this point in the history
  • Loading branch information
thorseraq authored Feb 16, 2023
1 parent 7cbda57 commit 27f1640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/playground/src/components/debug-menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ export class DebugMenu extends NonShadowLitElement {
this.canUndo = this.page.canUndo;
this.canRedo = this.page.canRedo;
});
this._styleMenu = new GUI();
this._styleMenu = new GUI({ hideable: false });
this._styleMenu.width = 350;
const style = document.documentElement.style;
const sizeFolder = this._styleMenu.addFolder('Size');
Expand Down

2 comments on commit 27f1640

@vercel
Copy link

@vercel vercel bot commented on 27f1640 Feb 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

blocksuite-react – ./packages/react/examples/next

blocksuite-react.vercel.app
blocksuite-react-toeverything.vercel.app
blocksuite-react-git-master-toeverything.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 27f1640 Feb 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

blocksuite – ./packages/playground

blocksuite-five.vercel.app
blocksuite-toeverything.vercel.app
blocksuite-git-master-toeverything.vercel.app

Please sign in to comment.