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 5f51939 commit def93eaCopy full SHA for def93ea
arduino-ide-extension/src/browser/theia/outline/outline-contribution.ts
@@ -9,6 +9,14 @@ export class OutlineViewContribution extends TheiaOutlineViewContribution {
9
@inject(EditorMode)
10
protected readonly editorMode: EditorMode;
11
12
+ constructor() {
13
+ super();
14
+ this.options.defaultWidgetOptions = {
15
+ area: 'left',
16
+ rank: 500
17
+ };
18
+ }
19
+
20
async initializeLayout(app: FrontendApplication): Promise<void> {
21
if (this.editorMode.proMode) {
22
return super.initializeLayout(app);
0 commit comments