Skip to content

Commit

Permalink
临时绕过VSCode的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sumneko committed Nov 7, 2024
1 parent 8611ac9 commit 5b4296e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/mainMenu/mainMenu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ class MainMenu {
this.tree = new TreeProvider(mainNode);
this.view = vscode.window.createTreeView('y3-helper.mainMenu', {
treeDataProvider: this.tree,
manageCheckboxStateManually: true,
// 先绕过 VSCode 1.95.0 的 bug
//manageCheckboxStateManually: true,
});
this.view.onDidChangeVisibility(async (e) => {
if (e.visible) {
Expand Down
2 changes: 1 addition & 1 deletion src/mainMenu/pages/features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export class 功能 extends TreeNode {
};
},
}),
多开模式(),
//多开模式(),
启用Tracy(),
切换自定义视图(),
]
Expand Down

0 comments on commit 5b4296e

Please sign in to comment.