File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
client/interpreter/display Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ export class InterpreterDisplay implements IInterpreterDisplay {
36
36
const application = serviceContainer . get < IApplicationShell > ( IApplicationShell ) ;
37
37
const disposableRegistry = serviceContainer . get < Disposable [ ] > ( IDisposableRegistry ) ;
38
38
39
- this . statusBar = application . createStatusBarItem ( StatusBarAlignment . Left , 100 ) ;
39
+ this . statusBar = application . createStatusBarItem ( StatusBarAlignment . Right , 100 ) ;
40
40
this . statusBar . command = 'python.setInterpreter' ;
41
41
disposableRegistry . push ( this . statusBar ) ;
42
42
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ suite('Interpreters Display', () => {
82
82
. returns ( ( ) => interpreterHelper . object ) ;
83
83
serviceContainer . setup ( ( c ) => c . get ( TypeMoq . It . isValue ( IPathUtils ) ) ) . returns ( ( ) => pathUtils . object ) ;
84
84
applicationShell
85
- . setup ( ( a ) => a . createStatusBarItem ( TypeMoq . It . isValue ( StatusBarAlignment . Left ) , TypeMoq . It . isValue ( 100 ) ) )
85
+ . setup ( ( a ) => a . createStatusBarItem ( TypeMoq . It . isValue ( StatusBarAlignment . Right ) , TypeMoq . It . isValue ( 100 ) ) )
86
86
. returns ( ( ) => statusBar . object ) ;
87
87
pathUtils . setup ( ( p ) => p . getDisplayName ( TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) ) ) . returns ( ( p ) => p ) ;
88
88
createInterpreterDisplay ( ) ;
You can’t perform that action at this time.
0 commit comments