浏览代码

"Close all" command refers to tabs, not widgets

Users are unaware of the JupyterLab "widget" nomenclature (which is
also overloaded in many contexts). The other Main Area commands
currently refer to "Activate Next Tab" and "Activate Previous Tab", so
having "Close All Tabs" seems like a more natural name for the
operation.
Paul Ivanov 6 年之前
父节点
当前提交
2597fbc27b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/application-extension/src/index.tsx

+ 1 - 1
packages/application-extension/src/index.tsx

@@ -452,7 +452,7 @@ function addCommands(app: JupyterLab, palette: ICommandPalette): void {
 
   command = CommandIDs.closeAll;
   app.commands.addCommand(command, {
-    label: 'Close All Widgets',
+    label: 'Close All Tabs',
     execute: () => {
       app.shell.closeAll();
     }