Skip to content

Commit 74f1619

Browse files
committed
app: fix clipping of editor popups
Editor popups like the ones for code completion were getting clipped by the layout pane containers.
1 parent 1482e9f commit 74f1619

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
### Changed
88
- Improved syntax highlighting for f-strings, operators and numeric literals.
99

10+
### Fixed
11+
- Fixed clipping of code completion popup by terminal.
12+
1013
## [2.1.0-beta.2] - 2022-12-26
1114

1215
### Changed

src/app/app.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,10 @@ $dark-splitter-color-hover: color.adjust(
167167
}
168168
}
169169

170-
.splitter-layout .layout-pane {
171-
overflow: hidden;
170+
// we want overflow visible for editor overlays but it breaks resizing
171+
// so we can only apply this when not resizing
172+
.splitter-layout:not(.layout-changing) > .layout-pane {
173+
overflow: visible;
172174
}
173175

174176
// hide the docs and resize separator

0 commit comments

Comments
 (0)