1
- import { inject , injectable } from '@theia/core/shared/inversify' ;
1
+ import { injectable } from '@theia/core/shared/inversify' ;
2
2
import { CommandRegistry } from '@theia/core/lib/common/command' ;
3
3
import { MenuModelRegistry } from '@theia/core/lib/common/menu' ;
4
4
import { KeybindingRegistry } from '@theia/core/lib/browser/keybinding' ;
7
7
ElectronCommands ,
8
8
} from '@theia/core/lib/electron-browser/menu/electron-menu-contribution' ;
9
9
import { MainMenuManager } from '../../../common/main-menu-manager' ;
10
- import { FrontendApplicationStateService } from '@theia/core/lib/browser/frontend-application-state' ;
11
10
import { FrontendApplication } from '@theia/core/lib/browser/frontend-application' ;
12
11
import { ZoomLevel } from '@theia/core/lib/electron-browser/window/electron-window-preferences' ;
13
12
import { PreferenceScope } from '@theia/core/lib/browser/preferences/preference-scope' ;
@@ -21,33 +20,22 @@ export class ElectronMenuContribution
21
20
extends TheiaElectronMenuContribution
22
21
implements MainMenuManager
23
22
{
24
- @inject ( FrontendApplicationStateService )
25
- private readonly appStateService : FrontendApplicationStateService ;
26
-
27
- // private appReady = false;
28
- // private updateWhenReady = false;
23
+ private app : FrontendApplication ;
29
24
30
25
override onStart ( app : FrontendApplication ) : void {
26
+ this . app = app ;
31
27
super . onStart ( app ) ;
32
- this . appStateService . reachedState ( 'ready' ) . then ( ( ) => {
33
- // this.appReady = true;
34
- // if (this.updateWhenReady) {
35
- // this.update();
36
- // }
37
- } ) ;
38
28
}
39
29
40
30
protected override hideTopPanel ( ) : void {
41
31
// NOOP
42
- // We reuse the `div` for the Arduino toolbar.
32
+ // IDE2 reuses the `div` for the toolbar.
43
33
}
44
34
45
35
update ( ) : void {
46
- // if (this.appReady) {
47
- ( this as any ) . setMenu ( ) ;
48
- // } else {
49
- // this.updateWhenReady = true;
50
- // }
36
+ if ( this . app ) {
37
+ this . setMenu ( this . app ) ;
38
+ }
51
39
}
52
40
53
41
override registerCommands ( registry : CommandRegistry ) : void {
0 commit comments