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 d204fb2 commit a6fe03dCopy full SHA for a6fe03d
packages/navigator/src/app/shell.ts
@@ -90,9 +90,6 @@ export class GatorShell extends Widget {
90
return;
91
}
92
93
- // make the widget closable
94
- widget.title.closable = true;
95
-
96
const dock = this._main;
97
98
const { title } = widget;
packages/navigator/src/plugins/navigator/index.ts
@@ -27,6 +27,7 @@ const plugin: GatorFrontEndPlugin<void> = {
27
content.title.caption = 'Conda Packages Manager';
28
content.title.icon = condaIcon;
29
const widget = new MainAreaWidget({ content });
30
+ widget.title.closable = false;
31
app.shell.add(widget, 'main');
32
33
};
0 commit comments