@@ -349,6 +349,9 @@ import { ConfigServiceClient } from './config/config-service-client';
349
349
import { ValidateSketch } from './contributions/validate-sketch' ;
350
350
import { RenameCloudSketch } from './contributions/rename-cloud-sketch' ;
351
351
import { CreateFeatures } from './create/create-features' ;
352
+ import { Account } from './contributions/account' ;
353
+ import { SidebarBottomMenuWidget } from './theia/core/sidebar-bottom-menu-widget' ;
354
+ import { SidebarBottomMenuWidget as TheiaSidebarBottomMenuWidget } from '@theia/core/lib/browser/shell/sidebar-bottom-menu-widget' ;
352
355
353
356
export default new ContainerModule ( ( bind , unbind , isBound , rebind ) => {
354
357
// Commands and toolbar items
@@ -751,6 +754,7 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
751
754
Contribution . configure ( bind , NewCloudSketch ) ;
752
755
Contribution . configure ( bind , ValidateSketch ) ;
753
756
Contribution . configure ( bind , RenameCloudSketch ) ;
757
+ Contribution . configure ( bind , Account ) ;
754
758
755
759
bindContributionProvider ( bind , StartupTaskProvider ) ;
756
760
bind ( StartupTaskProvider ) . toService ( BoardsServiceProvider ) ; // to reuse the boards config in another window
@@ -1031,4 +1035,7 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
1031
1035
} ,
1032
1036
} ) )
1033
1037
. inSingletonScope ( ) ;
1038
+
1039
+ bind ( SidebarBottomMenuWidget ) . toSelf ( ) ;
1040
+ rebind ( TheiaSidebarBottomMenuWidget ) . toService ( SidebarBottomMenuWidget ) ;
1034
1041
} ) ;
0 commit comments