File tree 2 files changed +10
-4
lines changed
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,10 @@ const launchButtons: JupyterFrontEndPlugin<void> = {
77
77
const { commands, shell } = app ;
78
78
const baseUrl = PageConfig . getBaseUrl ( ) ;
79
79
const trans = translator . load ( 'notebook' ) ;
80
- const menubar = new MenuBar ( ) ;
80
+ const overflowOptions = {
81
+ overflowMenuOptions : { overflowMenuVisible : false , title : '' }
82
+ } ;
83
+ const menubar = new MenuBar ( overflowOptions ) ;
81
84
const switcher = new Menu ( { commands } ) ;
82
85
switcher . title . label = trans . __ ( 'Interface' ) ;
83
86
menubar . addMenu ( switcher ) ;
@@ -134,7 +137,7 @@ const launchButtons: JupyterFrontEndPlugin<void> = {
134
137
'Notebook' ,
135
138
'interfaceSwitcher' ,
136
139
panel => {
137
- const menubar = new MenuBar ( ) ;
140
+ const menubar = new MenuBar ( overflowOptions ) ;
138
141
menubar . addMenu ( switcher ) ;
139
142
menubar . addClass ( 'jp-InterfaceSwitcher' ) ;
140
143
return menubar ;
Original file line number Diff line number Diff line change @@ -80,7 +80,10 @@ const createNew: JupyterFrontEndPlugin<void> = {
80
80
const { commands } = app ;
81
81
const trans = translator . load ( 'notebook' ) ;
82
82
83
- const menubar = new MenuBar ( ) ;
83
+ const overflowOptions = {
84
+ overflowMenuOptions : { overflowMenuVisible : false , title : '' }
85
+ } ;
86
+ const menubar = new MenuBar ( overflowOptions ) ;
84
87
const newMenu = new Menu ( { commands } ) ;
85
88
newMenu . title . label = trans . __ ( 'New' ) ;
86
89
newMenu . title . icon = caretDownIcon ;
@@ -103,7 +106,7 @@ const createNew: JupyterFrontEndPlugin<void> = {
103
106
FILE_BROWSER_FACTORY ,
104
107
'new-dropdown' ,
105
108
( browser : FileBrowser ) => {
106
- const menubar = new MenuBar ( ) ;
109
+ const menubar = new MenuBar ( overflowOptions ) ;
107
110
menubar . addMenu ( newMenu ) ;
108
111
menubar . addClass ( 'jp-DropdownMenu' ) ;
109
112
return menubar ;
You can’t perform that action at this time.
0 commit comments