File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
src/vs/workbench/contrib/terminal/browser Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -67,8 +67,11 @@ class SplitPaneContainer extends Disposable {
67
67
if ( ( isHorizontal && this . orientation !== Orientation . HORIZONTAL ) ||
68
68
( ! isHorizontal && this . orientation !== Orientation . VERTICAL ) ) {
69
69
// Resize the entire pane as a whole
70
- if ( ( this . orientation === Orientation . HORIZONTAL && direction === Direction . Down ) ||
71
- ( this . orientation === Orientation . VERTICAL && direction === Direction . Right ) ) {
70
+ if (
71
+ ( this . orientation === Orientation . HORIZONTAL && direction === Direction . Down ) ||
72
+ ( part === Parts . SIDEBAR_PART && direction === Direction . Left ) ||
73
+ ( part === Parts . AUXILIARYBAR_PART && direction === Direction . Right )
74
+ ) {
72
75
amount *= - 1 ;
73
76
}
74
77
You can’t perform that action at this time.
0 commit comments